Package org.dellroad.msrp
Class Session
- java.lang.Object
-
- org.dellroad.msrp.Session
-
public class Session extends Object
Represents one MSRP session.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
cancel(String messageId)
Cancel an outgoing message previously sent.boolean
close(Exception cause)
Close this session.MsrpUri
getLocalUri()
Get local URI.MsrpUri
getRemoteUri()
Get remote URI.String
send(byte[] content, String contentType, Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message specified as abyte[]
array.String
send(InputStream input, int size, String contentType, Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message specified as anInputStream
.String
send(Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message with no content.boolean
sendFailureReport(List<MsrpUri> toPath, String messageId, Status status)
Enqueue an outgoing failure report.boolean
sendSuccessReport(List<MsrpUri> toPath, String messageId, ByteRange byteRange, Status status)
Enqueue an outgoing success report.String
toString()
-
-
-
Method Detail
-
getLocalUri
public MsrpUri getLocalUri()
Get local URI.- Returns:
- local URI
-
getRemoteUri
public MsrpUri getRemoteUri()
Get remote URI.- Returns:
- remote URI
-
close
public boolean close(Exception cause)
Close this session.Any
FailureListener
s associated with queued messages will be notified. This method is idempotent.- Parameters:
cause
- error that occurred, if any, otherwise null- Returns:
- true if this instance was closed, false if this instance was already closed
-
send
public String send(byte[] content, String contentType, Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message specified as abyte[]
array.- Parameters:
content
- message contentcontentType
- content typeheaders
- other headers (MIME and/or extension), or null for nonereportListener
- success and/or failure listener, or null for none- Returns:
- unique message ID, or null if this instance is closed
- Throws:
IllegalArgumentException
- ifcontent
orcontentType
is nullIllegalArgumentException
- ifheaders
contains an invalid header name or value
-
send
public String send(InputStream input, int size, String contentType, Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message specified as anInputStream
. This method will handle closing the providedinput
.- Parameters:
input
- message content input; will be eventually closed by this methodsize
- size of input, or -1 if unknown; if positive and input is longer than this, it will be truncatedcontentType
- content typeheaders
- other headers (MIME and/or extension), or null for nonereportListener
- success and/or failure listener, or null for none- Returns:
- unique message ID, or null if this instance is closed
- Throws:
IllegalArgumentException
- ifinput
orcontentType
is nullIllegalArgumentException
- ifsize
is less than -1IllegalArgumentException
- ifheaders
contains an invalid header name or value
-
send
public String send(Iterable<? extends Header> headers, ReportListener reportListener)
Enqueue an outgoing message with no content.- Parameters:
headers
- other headers (MIME and/or extension), or null for nonereportListener
- success and/or failure listener, or null for none- Returns:
- unique message ID, or null if this instance is closed
- Throws:
IllegalArgumentException
- ifinput
orcontentType
are not both null or both not-nullIllegalArgumentException
- ifsize
is less than -1 orinput
is null and size is not -1IllegalArgumentException
- ifheaders
contains an invalid header name or value
-
cancel
public boolean cancel(String messageId)
Cancel an outgoing message previously sent.- Parameters:
messageId
- message ID returned bysend()
- Returns:
- true if message was canceled, false if message has already been completely sent
- Throws:
IllegalArgumentException
- ifmessageId
is null
-
sendSuccessReport
public boolean sendSuccessReport(List<MsrpUri> toPath, String messageId, ByteRange byteRange, Status status)
Enqueue an outgoing success report.- Parameters:
toPath
- path to the peer; should equal theFrom-Path
from the received messagemessageId
- theMessage-ID
from the received messagestatus
- success status, or null for default200 Message Delivered
byteRange
- byte range successfully received- Returns:
- true if report was sent, false if report could not be sent because this instance is closed
- Throws:
IllegalArgumentException
- iftoPath
is null or emptyIllegalArgumentException
- ifmessageId
is null or invalidIllegalArgumentException
- ifbyteRange
is null
-
sendFailureReport
public boolean sendFailureReport(List<MsrpUri> toPath, String messageId, Status status)
Enqueue an outgoing failure report.- Parameters:
toPath
- path to the peer; should equal theFrom-Path
from the received messagemessageId
- theMessage-ID
from the received messagestatus
- failure status- Returns:
- true if report was sent, false if report could not be sent because this instance is closed
- Throws:
IllegalArgumentException
- iftoPath
is null or emptyIllegalArgumentException
- ifmessageId
is null or invalidIllegalArgumentException
- ifstatus
is null
-
-