Package com.ponysdk.core.command.event

Examples of com.ponysdk.core.command.event.ServiceFailedEvent


    protected void doAfterSuccess(final T result) {
        // Do nothing
    }

    protected void doAfterFailure(final Throwable caught) {
        final ServiceFailedEvent event = new ServiceFailedEvent(AbstractServiceCommand.this, caught);
        eventBus.fireEvent(event);
    }
View Full Code Here

TOP

Related Classes of com.ponysdk.core.command.event.ServiceFailedEvent

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.