I have a macro that will implement a Java interface that is a listener. I defined the macro to take a map containing functions that I want to destructure, and use for each of the interfaces methods. This is the macro :-
(defmacro with-cache-listener-m [component event body]
(let [{:keys [f-insert f-update]} body]
`(. ~component addMapListener
(proxy [AbstractMapListener] []
(entryInserted [~event] ~f-insert ~event)
(entryUpdated [~event] ~f-update ~event)))))
The body map is this :-
(def m-callbacks {:f-insert callback-insert :f-update callback-update})
But when I call (macroexpand '(with-cache-listener-m test-cache e m-callbacks)) it expands to (. test-cache user/addMapListener (clojure.core/proxy [com.tangosol.util.AbstractMapListener] [] (user/entryInserted [e] nil e) (user/entryUpdated [e] nil e)))
The callback functions are nil. Do I need to define them differently or am I going about this the wrong way.