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

io.rsocket.frame.CancelFrameCodec Maven / Gradle / Ivy

The newest version!
package io.rsocket.frame;

import io.netty.buffer.ByteBuf;
import io.netty.buffer.ByteBufAllocator;

public class CancelFrameCodec {
  private CancelFrameCodec() {}

  public static ByteBuf encode(final ByteBufAllocator allocator, final int streamId) {
    return FrameHeaderCodec.encode(allocator, streamId, FrameType.CANCEL, 0);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy