com.dragome.forms.bindings.client.command.Events Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dragome-form-bindings Show documentation
Show all versions of dragome-form-bindings Show documentation
Dragome SDK module: form bindings
package com.dragome.forms.bindings.client.command;
import com.dragome.forms.bindings.client.binding.Disposable;
import com.dragome.forms.bindings.extra.user.client.Command;
/**
* Created by IntelliJ IDEA.
* User: andrew
* Date: Apr 1, 2010
* Time: 1:33:31 PM
* To change this template use File | Settings | File Templates.
*/
public interface Events
{
Disposable onStartInvoke(Command command);
Disposable onFinishInvoke(Command command);
SendToBuilder onStartSend(T value);
SendToBuilder onFinishSend(T value);
Disposable sendAllEventsTo(LifeCycleCallback callback);
}