Hazelcast.Client.Spi.ClientInvocationService.InvokeListenerOnConnection C# (CSharp) Method

InvokeListenerOnConnection() public method

public InvokeListenerOnConnection ( IClientMessage request, DistributedEventHandler handler, DecodeStartListenerResponse responseDecoder, ClientConnection connection ) : IFuture
request IClientMessage
handler DistributedEventHandler
responseDecoder DecodeStartListenerResponse
connection Hazelcast.Client.Connection.ClientConnection
return IFuture
        public IFuture<IClientMessage> InvokeListenerOnConnection(IClientMessage request,
            DistributedEventHandler handler, DecodeStartListenerResponse responseDecoder, ClientConnection connection)
        {
            var clientInvocation = new ClientListenerInvocation(request, handler, responseDecoder, connection);
            InvokeInternal(clientInvocation, null, connection);
            return clientInvocation.Future;
        }