Package org.apache.cayenne.rop
Interface ROPConnector
- All Known Implementing Classes:
- HttpROPConnector
public interface ROPConnector
ROP network connectivity interface.
- Since:
- 4.0
- 
Method SummaryModifier and Type Method Description voidclose()Close all resources related to ROP Connector.InputStreamestablishSession()Establishes a dedicated session with Cayenne DataChannel, returning session id.InputStreamestablishSharedSession(String sharedSessionName)Creates a new session with the specified or joins an existing one.InputStreamsendMessage(byte[] message)Processes message on a remote server, returning the result of such processing.
- 
Method Details- 
establishSessionEstablishes a dedicated session with Cayenne DataChannel, returning session id.- Throws:
- IOException
 
- 
sendMessageProcesses message on a remote server, returning the result of such processing.- Throws:
- IOException
 
- 
closeClose all resources related to ROP Connector.- Throws:
- IOException
 
 
-