net.openhft.chronicle.bytes.Bytes.inputStream()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(123)

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

Bytes.inputStream介绍

暂无

代码示例

代码示例来源:origin: de.otto.synapse/synapse-core

@Override
public V read(Bytes in, V using) {
  try {
    return objectMapper.readValue(in.inputStream(), clazz);
  } catch (IOException e) {
    throw new RuntimeException(e);
  }
}

代码示例来源:origin: net.openhft/chronicle-map

@NotNull
@Override
public T read(Bytes in, @Nullable T using) {
  try {
    return (T) new ObjectInputStream(in.inputStream()).readObject();
  } catch (IOException | ClassNotFoundException e) {
    throw new RuntimeException(e);
  }
}

代码示例来源:origin: net.openhft/chronicle-map

@NotNull
  @Override
  public T read(Bytes in, @Nullable T using) {
    if (using == null)
      using = createInstance();
    try {
      using.readExternal(new ObjectInputStream(in.inputStream()));
      return using;
    } catch (IOException | ClassNotFoundException e) {
      throw new RuntimeException(e);
    }
  }
}

代码示例来源:origin: atlanmod/NeoEMF

@Nonnull
@Override
public T read(@SuppressWarnings("rawtypes") Bytes in, @Nullable T using) {
  try {
    return delegate.deserialize(in.inputStream());
  }
  catch (IOException e) {
    throw Throwables.shouldNeverHappen(e);
  }
}

代码示例来源:origin: net.openhft/chronicle-map

void initTransients(long bytesCapacity) {
  bytes = DefaultElasticBytes.allocateDefaultElasticBytes(bytesCapacity);
  out = bytes.outputStream();
  in = bytes.inputStream();
}

相关文章

微信公众号

最新文章

更多