io.netty.buffer.ByteBuf.setFloat()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(152)

本文整理了Java中io.netty.buffer.ByteBuf.setFloat()方法的一些代码示例,展示了ByteBuf.setFloat()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ByteBuf.setFloat()方法的具体详情如下:
包路径:io.netty.buffer.ByteBuf
类名称:ByteBuf
方法名:setFloat

ByteBuf.setFloat介绍

[英]Sets the specified 32-bit floating-point number at the specified absolute index in this buffer. This method does not modify readerIndex or writerIndex of this buffer.
[中]在此缓冲区中指定的绝对索引处设置指定的32位浮点数。此方法不修改此缓冲区的readerIndex或writerIndex。

代码示例

代码示例来源:origin: netty/netty

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: redisson/redisson

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: wildfly/wildfly

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: micronaut-projects/micronaut-core

@Override
public ByteBuf setFloat(int index, float value) {
  byteBuf.setFloat(index, value);
  return this;
}

代码示例来源:origin: eclipse-vertx/vert.x

public Buffer setFloat(int pos, float f) {
 ensureWritable(pos, 4);
 buffer.setFloat(pos, f);
 return this;
}

代码示例来源:origin: io.netty/netty-buffer

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: io.vertx/vertx-core

public Buffer setFloat(int pos, float f) {
 ensureWritable(pos, 4);
 buffer.setFloat(pos, f);
 return this;
}

代码示例来源:origin: org.apache.activemq/artemis-jms-client-all

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: apache/activemq-artemis

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: io.ratpack/ratpack-core

@Override
public ByteBuf setFloat(int index, float value) {
 delegate.setFloat(index, value);
 return this;
}

代码示例来源:origin: ProtocolSupport/ProtocolSupport

@Override
public ByteBuf setFloat(final int n, final float n2) {
  this.buf.setFloat(n, n2);
  return this;
}

代码示例来源:origin: io.reactivesocket/reactivesocket-transport-tcp

@Override
public void putFloat(int index, float value)
{
  byteBuf.setFloat(index, value);
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

@Override
public ByteBuf setFloat(int index, float value) {
  buf.setFloat(index, value);
  return this;
}

代码示例来源:origin: Dytanic/CloudNet

@Override
public ByteBuf setFloat(int i, float v)
{
  return byteBuf.setFloat(i, v);
}

代码示例来源:origin: io.reactivesocket/reactivesocket-transport-tcp

@Override
public void putFloat(int index, float value, ByteOrder byteOrder)
{
  ensureByteOrder(byteOrder);
  byteBuf.setFloat(index, value);
}

相关文章

ByteBuf类方法