本文整理了Java中org.apache.qpid.proton.codec.WritableBuffer.putLong()
方法的一些代码示例,展示了WritableBuffer.putLong()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。WritableBuffer.putLong()
方法的具体详情如下:
包路径:org.apache.qpid.proton.codec.WritableBuffer
类名称:WritableBuffer
方法名:putLong
暂无
代码示例来源:origin: com.microsoft.azure.iot/proton-j-azure-iot
void writeRaw(final long l)
{
_buffer.putLong(l);
}
代码示例来源:origin: org.apache.qpid/proton-j-impl
void writeRaw(final long l)
{
_buffer.putLong(l);
}
代码示例来源:origin: org.apache.qpid/proton-j
void writeRaw(final long l)
{
_buffer.putLong(l);
}
代码示例来源:origin: org.apache.qpid/proton
void writeRaw(final long l)
{
_buffer.putLong(l);
}
代码示例来源:origin: org.apache.qpid/proton
public void putLong(long l)
{
int remaining = _first.remaining();
if(remaining >= 8)
{
_first.putLong(l);
}
else if(remaining ==0 )
{
_second.putLong(l);
}
else
{
ByteBuffer wrap = ByteBuffer.wrap(new byte[8]);
wrap.putLong(l);
wrap.flip();
put(wrap);
}
}
代码示例来源:origin: org.apache.qpid/proton-j-impl
public void putLong(long l)
{
int remaining = _first.remaining();
if(remaining >= 8)
{
_first.putLong(l);
}
else if(remaining ==0 )
{
_second.putLong(l);
}
else
{
ByteBuffer wrap = ByteBuffer.wrap(new byte[8]);
wrap.putLong(l);
wrap.flip();
put(wrap);
}
}
代码示例来源:origin: com.microsoft.azure.iot/proton-j-azure-iot
public void putLong(long l)
{
int remaining = _first.remaining();
if(remaining >= 8)
{
_first.putLong(l);
}
else if(remaining ==0 )
{
_second.putLong(l);
}
else
{
ByteBuffer wrap = ByteBuffer.wrap(new byte[8]);
wrap.putLong(l);
wrap.flip();
put(wrap);
}
}
代码示例来源:origin: org.apache.qpid/proton-j
@Override
public void putLong(long l)
{
int remaining = _first.remaining();
if(remaining >= 8)
{
_first.putLong(l);
}
else if(remaining ==0 )
{
_second.putLong(l);
}
else
{
ByteBuffer wrap = ByteBuffer.wrap(new byte[8]);
wrap.putLong(l);
wrap.flip();
put(wrap);
}
}
内容来源于网络,如有侵权,请联系作者删除!