public IByteBuf WriteLong(long value) { _buf.WriteLong(ByteBufferUtil.SwapLong(value)); return(this); }
public IByteBuf SetLong(int index, long value) { _buf.SetLong(index, ByteBufferUtil.SwapLong(value)); return(this); }
public long ReadLong() { return(ByteBufferUtil.SwapLong(_buf.ReadLong())); }
public long GetLong(int index) { return(ByteBufferUtil.SwapLong(_buf.GetLong(index))); }