public interface

TrapPeer

implements TrapEndpoint
com.ericsson.research.trap.TrapPeer

Class Overview

Interface used to maintain peer to peer Trap connections. In this case, the caller provides an out-of-band channel for Trap to handshake on.

Summary

Nested Classes
interface TrapPeer.TrapPeerChannel Callback interface to be implemented by the caller. 
[Expand]
Inherited Constants
From interface com.ericsson.research.trap.TrapEndpoint
Public Methods
abstract void open(TrapPeer.TrapPeerChannel channel)
Opens the peer to peer connection, expecting connections to go over the specific channel channel.
abstract void receive(byte[] data)
Provide data from the remote peer to this one.
[Expand]
Inherited Methods
From interface com.ericsson.research.trap.TrapEndpoint
From interface com.ericsson.research.trap.TrapSettings

Public Methods

public abstract void open (TrapPeer.TrapPeerChannel channel)

Opens the peer to peer connection, expecting connections to go over the specific channel channel.

Parameters
channel The external communications channel. Trap will use this to communicate out-of-band messages necessary to establish the connection.
Throws
TrapException If an error occurs in allocating the resources needed to establish the peer connection.

public abstract void receive (byte[] data)

Provide data from the remote peer to this one.

Parameters
data The data, as received from the remote peer.