io.rsocket.metadata.RoutingMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rsocket-core Show documentation
Show all versions of rsocket-core Show documentation
Core functionality for the RSocket library
The newest version!
package io.rsocket.metadata;
import io.netty.buffer.ByteBuf;
/**
* Routing Metadata extension from
* https://github.com/rsocket/rsocket/blob/master/Extensions/Routing.md
*
* @author linux_china
*/
public class RoutingMetadata extends TaggingMetadata {
private static final WellKnownMimeType ROUTING_MIME_TYPE =
WellKnownMimeType.MESSAGE_RSOCKET_ROUTING;
public RoutingMetadata(ByteBuf content) {
super(ROUTING_MIME_TYPE.getString(), content);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy