Interface CDORemoteSession
- All Superinterfaces:
Comparable<CDORemoteSession>
- All Known Subinterfaces:
InternalCDORemoteSession
Represents a remote session that is connected to the same repository as the
local session
that the remote session manager
points to.- Since:
- 2.0
- Author:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the remote session manager that manages this remote session.int
Returns the session ID of this remote session.Returns the user ID of this remote session.boolean
Returnstrue
if this remote session is subscribed to changes in the set of remote sessions and deliverscustom data events
,false
otherwise.boolean
sendMessage
(CDORemoteSessionMessage message) Sends a unicast message to this remote session if it is subscribed.Methods inherited from interface java.lang.Comparable
compareTo
-
Method Details
-
getManager
CDORemoteSessionManager getManager()Returns the remote session manager that manages this remote session. -
getSessionID
int getSessionID()Returns the session ID of this remote session. -
getUserID
String getUserID()Returns the user ID of this remote session. -
isSubscribed
boolean isSubscribed()Returnstrue
if this remote session is subscribed to changes in the set of remote sessions and deliverscustom data events
,false
otherwise. -
sendMessage
Sends a unicast message to this remote session if it is subscribed.- Returns:
true
if the server received the custom data message,false
otherwise. Note: No assumption must be made on whether the recipient session received the message and was able to handle it adequately!- Throws:
CDOException
- if this remote session is not subscribed.- Since:
- 3.0
- See Also:
-