All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rsocket.metadata.RoutingMetadata Maven / Gradle / Ivy

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