Package de.novanic.eventservice.client.command

Examples of de.novanic.eventservice.client.command.RemoteListenCommand


    /**
     * Starts listening for events (listen call to the server side).
     * @param aCallback callback
     */
    protected void listen(AsyncCallback<List<DomainEvent>> aCallback) {
        RemoteCommand<List<DomainEvent>> theRemoteListenCommand = new RemoteListenCommand();
        theRemoteListenCommand.init(aCallback);
        theRemoteListenCommand.execute(myEventService);
    }
View Full Code Here

TOP

Related Classes of de.novanic.eventservice.client.command.RemoteListenCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.