Interface PayloadExchange
-
- All Known Implementing Classes:
DefaultPayloadExchange
public interface PayloadExchange
Contract for a Payload interaction.- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.util.MimeType
getDataMimeType()
org.springframework.util.MimeType
getMetadataMimeType()
io.rsocket.Payload
getPayload()
PayloadExchangeType
getType()
-
-
-
Method Detail
-
getType
PayloadExchangeType getType()
-
getPayload
io.rsocket.Payload getPayload()
-
getDataMimeType
org.springframework.util.MimeType getDataMimeType()
-
getMetadataMimeType
org.springframework.util.MimeType getMetadataMimeType()
-
-