Package com.attivio.sdk.transport
Interface MessageListTransportCallback
-
public interface MessageListTransportCallback
An interface for callbacks to be invoked after transportation (successful or not) of aMessageList
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
failure(MessageList messageList, java.lang.Throwable e)
Callback for the unsuccessful transportation of aMessageList
void
success(MessageList messageList)
Callback for the successful transportation of aMessageList
-
-
-
Method Detail
-
success
void success(MessageList messageList)
Callback for the successful transportation of aMessageList
-
failure
void failure(MessageList messageList, java.lang.Throwable e)
Callback for the unsuccessful transportation of aMessageList
- Parameters:
e
-Throwable
error that causes the unsuccessful transportation
-
-