List of usage examples for io.netty.buffer ByteBuf writeByte
public abstract ByteBuf writeByte(int value);
From source file:com.ltln.modules.openflow.core.protocol.ver11.OFGroupTypeSerializerVer11.java
public static void writeTo(ByteBuf bb, OFGroupType e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver12.OFTableSerializerVer12.java
public static void writeTo(ByteBuf bb, OFTable e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnControllerConnectionStateSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnControllerConnectionState e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnControllerRoleReasonSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnControllerRoleReason e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnLacpConvergenceStatusSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnLacpConvergenceStatus e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnLacpStateSerializerVer13.java
public static void writeTo(ByteBuf bb, Set<OFBsnLacpState> set) { bb.writeByte(toWireValue(set)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnLoglevelSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnLoglevel e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnPortCounterSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnPortCounter e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnPortVxlanModeSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnPortVxlanMode e) { bb.writeByte(toWireValue(e)); }
From source file:com.ltln.modules.openflow.core.protocol.ver13.OFBsnRateUnitSerializerVer13.java
public static void writeTo(ByteBuf bb, OFBsnRateUnit e) { bb.writeByte(toWireValue(e)); }