abstract
void
|
close()
Closes this Trap endpoint, terminating any outstanding Trap transports.
|
abstract
TrapAuthentication
|
getAuthentication()
Fetches the authentication instance for this Trap endpoint.
|
abstract
long
|
getBlockingTimeout()
Accessor for the current blocking timeout
|
abstract
TrapChannel
|
getChannel(int channelID)
Fetches the channel object associated with the given channel ID.
|
abstract
int
|
getKeepaliveInterval()
Retreives the current value of keepaliveInterval.
|
abstract
int
|
getMaxActiveTransports()
Gets the amount of maximum simultaneously active transports.
|
abstract
long
|
getReconnectTimeout()
Fetches the reconnect timeout.
|
abstract
TrapState
|
getState()
Accessor for the current endpoint state.
|
abstract
Map<String, Map<String, Object>>
|
getTransportAuthenticationContexts()
Fetches all the available authentication context, for all transports; including, where available, IP numbers,
ports, etc.
|
abstract
TrapMessage.Format
|
getTrapFormat()
Fetches the current message serialization format.
|
abstract
Callback<Boolean>
|
isAlive(long within, boolean check, boolean force, long timeout)
Attempts to verify if the endpoint is alive, or has been alive within a certain number of milliseconds.
|
abstract
Callback<Boolean>
|
isAlive(long timeout)
Attempts to verify that the endpoint is alive, with a round trip time of at most timeout milliseconds.
|
abstract
boolean
|
isAsync()
Checks whether this endpoint works in async mode.
|
abstract
long
|
lastAlive()
Fetches the last known liveness timestamp of the endpoint.
|
abstract
void
|
send(TrapObject object)
|
abstract
void
|
send(byte[] data, int channel, boolean useCompression)
Attempts to queue data for sending.
|
abstract
void
|
send(TrapObject object, int channel, boolean useCompression)
Attempts to queue an object for sending.
|
abstract
void
|
send(byte[] data)
|
abstract
void
|
setAsync(boolean async)
In async mode, the endpoint will automatically schedule incoming messages on a separate thread than the one on
which they are received.
|
abstract
void
|
setAuthentication(TrapAuthentication authentication)
Assigns an authentication instance to this TrapEndpoint.
|
abstract
void
|
setBlockingTimeout(long timeout)
Sets the blocking timeout, when using a blocking queue.
|
abstract
void
|
setDelegate(TrapEndpointDelegate delegate, Object context)
|
abstract
void
|
setKeepaliveExpiry(long newExpiry)
Sets the keepalive expiry timeout.
|
abstract
void
|
setKeepaliveInterval(int newInterval)
Sets a new keepalive interval for the trap endpoint.
|
abstract
void
|
setMaxActiveTransports(int newMax)
Sets the maximum allowed simultaneous transports.
|
abstract
void
|
setQueue(MessageQueue newQueue)
Assigns a new queue implementation for the outgoing message queue.
|
abstract
void
|
setQueueType(String type)
|
abstract
void
|
setReconnectTimeout(long reconnectTimeout)
Sets the reconnect timeout.
|
abstract
void
|
setTrapFormat(TrapMessage.Format trapFormat)
Sets the Trap message format for this endpoint.
|