本文整理了Java中io.gomint.server.jni.zlib.ZLib.init()
方法的一些代码示例,展示了ZLib.init()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZLib.init()
方法的具体详情如下:
包路径:io.gomint.server.jni.zlib.ZLib
类名称:ZLib
方法名:init
暂无
代码示例来源:origin: GoMint/GoMint
@Override
public void handlerAdded( ChannelHandlerContext ctx ) throws Exception {
zlib.init( false, true, 0 );
}
代码示例来源:origin: GoMint/GoMint
@Override
public void handlerAdded( ChannelHandlerContext ctx ) throws Exception {
zlib.init( true, true, 7 );
}
代码示例来源:origin: GoMint/ProxProx
@Override
public void handlerAdded( ChannelHandlerContext ctx ) throws Exception {
zlib.init( true, true, 7 );
}
代码示例来源:origin: GoMint/ProxProx
@Override
public void handlerAdded( ChannelHandlerContext ctx ) throws Exception {
zlib.init( false, true, 0 );
}
代码示例来源:origin: GoMint/ProxProx
private ZLib getCompressor() {
ZLib zLib = COMPRESSOR.get();
if ( zLib != null ) {
return zLib;
}
zLib = ZLIB.newInstance();
zLib.init( true, false, 7 );
COMPRESSOR.set( zLib );
return zLib;
}
代码示例来源:origin: GoMint/GoMint
private ZLib getCompressor() {
ZLib zLib = COMPRESSOR.get();
if (zLib != null) {
return zLib;
}
zLib = ZLIB.newInstance();
zLib.init(true, false, 7);
COMPRESSOR.set(zLib);
return zLib;
}
代码示例来源:origin: GoMint/GoMint
private ZLib getCompressor() {
if ( COMPRESSOR.get() == null ) {
ZLib zLib = ZLIB.newInstance();
zLib.init( true, false, 7 );
COMPRESSOR.set( zLib );
return zLib;
}
return COMPRESSOR.get();
}
代码示例来源:origin: GoMint/ProxProx
protected void initDecompressor() {
this.decompressor = ZLIB.newInstance();
this.decompressor.init( false, false, 7 );
}
代码示例来源:origin: GoMint/GoMint
this.decompressor.init(false, false, 7); // Level doesn't matter
内容来源于网络,如有侵权,请联系作者删除!