org.glassfish.grizzly.Buffer.reset()方法的使用及代码示例

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

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

Buffer.reset介绍

[英]Resets this buffer's position to the previously-marked position.

Invoking this method neither changes nor discards the mark's value.
[中]将此缓冲区的位置重置为先前标记的位置。
调用此方法既不会更改也不会丢弃标记的值。

代码示例

代码示例来源:origin: org.glassfish.shoal/shoal-gms-impl

@Override
public Buffer reset() {
  grizzlyBuffer.reset();
  return this;
}

代码示例来源:origin: org.shoal/shoal-gms-impl

@Override
public Buffer reset() {
  grizzlyBuffer.reset();
  return this;
}

代码示例来源:origin: javaee/grizzly

protected static void assertMarkExceptionThrown(final Buffer bufferToTest) {
  try {
    bufferToTest.reset();  // mark never carried over to the split buffer.
    fail();
  } catch (InvalidMarkException ignored) {
  } catch (Exception e) {
    e.printStackTrace();
    fail(e.toString());
  }
}

代码示例来源:origin: javaee/grizzly

@Test
public void testBufferSplitWithMark() {
  Buffer b = mm.allocate(100);
  b.position(10);
  b.mark();
  Buffer newBuffer = b.split(15);
  assertMarkExceptionThrown(newBuffer);
  b.position(12);
  b.reset();
  assertEquals(10, b.position());
  newBuffer = b.split(5);
  assertMarkExceptionThrown(b);
  assertMarkExceptionThrown(newBuffer);
}

相关文章