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

com.jauntsdn.rsocket.frame.CancelFrameFlyweight Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.jauntsdn.rsocket.frame;

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

public class CancelFrameFlyweight {
  private CancelFrameFlyweight() {}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy