Hi folks: We are trying to get messaging working asynchronously. Take a look at the code below:
IgniteMessaging rmtMsg = grid.message().withAsync();
def future = rmtMsg.send(destination, message);
log.debug("got future ${future}");
That code runs synchronously and the debug says "got future null"
Is there something else we need to configure to get this working?
Dan
