Uses of Class
org.dellroad.msrp.MsrpUri
-
Packages that use MsrpUri Package Description org.dellroad.msrp Top level package for the msrp4j Java library.org.dellroad.msrp.msg Classes that handle and/or model the messages defined by the MSRP protocol. -
-
Uses of MsrpUri in org.dellroad.msrp
Methods in org.dellroad.msrp that return MsrpUri Modifier and Type Method Description MsrpUri
Session. getLocalUri()
Get local URI.MsrpUri
Session. getRemoteUri()
Get remote URI.Methods in org.dellroad.msrp that return types with arguments of type MsrpUri Modifier and Type Method Description List<MsrpUri>
InputChunks. getFromPath()
Get From path.SortedMap<MsrpUri,Session>
Msrp. getSessions()
Get all knownSession
s keyed by local URI.Methods in org.dellroad.msrp with parameters of type MsrpUri Modifier and Type Method Description int
MsrpUriComparator. compare(MsrpUri msrp1, MsrpUri msrp2)
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.Method parameters in org.dellroad.msrp with type arguments of type MsrpUri Modifier and Type Method Description boolean
Session. sendFailureReport(List<MsrpUri> toPath, String messageId, Status status)
Enqueue an outgoing failure report.boolean
Session. sendSuccessReport(List<MsrpUri> toPath, String messageId, ByteRange byteRange, Status status)
Enqueue an outgoing success report.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.Constructors in org.dellroad.msrp with parameters of type MsrpUri Constructor Description OutputChunks(MsrpUri localURI, MsrpUri remoteURI, InputStream input, long size, String contentType, Iterable<? extends Header> headers, ReportListener reportListener)
Constructor for a message with a body.OutputChunks(MsrpUri localURI, MsrpUri remoteURI, Iterable<? extends Header> headers, ReportListener reportListener)
Constructor for a message with no body. -
Uses of MsrpUri in org.dellroad.msrp.msg
Methods in org.dellroad.msrp.msg that return types with arguments of type MsrpUri Modifier and Type Method Description List<MsrpUri>
MsrpHeaders. getFromPath()
List<MsrpUri>
MsrpHeaders. getToPath()
-