Uses of Class
org.dellroad.msrp.Session
-
Packages that use Session Package Description org.dellroad.msrp Top level package for the msrp4j Java library. -
-
Uses of Session in org.dellroad.msrp
Methods in org.dellroad.msrp that return Session Modifier and Type Method Description Session
Msrp. createSession(MsrpUri localURI, MsrpUri remoteURI, Endpoint endpoint, SessionListener listener, Executor callbackExecutor, boolean active)
Create a newSession
using the given local and remote URIs.Methods in org.dellroad.msrp that return types with arguments of type Session Modifier and Type Method Description SortedMap<MsrpUri,Session>
Msrp. getSessions()
Get all knownSession
s keyed by local URI.Methods in org.dellroad.msrp with parameters of type Session Modifier and Type Method Description void
OutputChunks. notifyFailure(Session session, Executor executor, Status status)
Notify about failure, if appropriate.void
OutputChunks. notifySuccess(Session session, Executor executor, ByteRange byteRange)
Notify about success, if appropriate.void
FailureListener. reportFailure(Session session, String messageId, Status status)
Receive report of failed message transmission.void
SuccessListener. reportSuccess(Session session, String messageId, ByteRange byteRange)
Receive report of successful message transmission.void
SessionListener. sessionClosed(Session session, Exception cause)
Notification that aSession
has been closed or failed due to an error.void
SessionListener. sessionReceivedMessage(Session session, List<MsrpUri> fromPath, String messageId, byte[] content, String contentType, SortedSet<Header> headers, boolean successReport, boolean failureReport)
Notification that an MSRP message has been received in a session.
-