当前位置: 首页>>代码示例>>Java>>正文


Java FSTObjectOutput.flush方法代码示例

本文整理汇总了Java中de.ruedigermoeller.serialization.FSTObjectOutput.flush方法的典型用法代码示例。如果您正苦于以下问题:Java FSTObjectOutput.flush方法的具体用法?Java FSTObjectOutput.flush怎么用?Java FSTObjectOutput.flush使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在de.ruedigermoeller.serialization.FSTObjectOutput的用法示例。


在下文中一共展示了FSTObjectOutput.flush方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: fstWithFactory

import de.ruedigermoeller.serialization.FSTObjectOutput; //导入方法依赖的package包/类
/**
 * fst 序列化
 * 
 * use simple factory method to obtain input/outputstream instances. it is
 * thread safe.
 * 
 * object -> byte[]
 * 
 * @param value
 * @param outputStream
 * @return
 */
public static boolean fstWithFactory(Object value, OutputStream outputStream) {
	AssertHelper.notNull(value, "The Value must not be null");
	AssertHelper.notNull(outputStream, "The OutputStream must not be null");
	//
	boolean result = false;
	FSTObjectOutput out = null;
	try {
		out = fstConfiguration.getObjectOutput(outputStream);
		out.writeObject(value);
		result = true;
	} catch (Exception e) {
		LOGGER.error(new StringBuilder("Exception encountered during fstWithFactory()").toString(), e);
	} finally {
		try {
			if (out != null) {
				// DON'T out.close() when using factory method;
				out.flush();
			}
		} catch (Exception ex) {
		}
	}
	return result;
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:36,代码来源:SerializeHelper.java

示例2: serialize

import de.ruedigermoeller.serialization.FSTObjectOutput; //导入方法依赖的package包/类
/**
 * Get the bytes representing the given serialized object.
 */
protected byte[] serialize(Object o) {
    if (o == null) {
        throw new NullPointerException("Can't serialize null");
    }
    byte[] rv = null;
    try {
        FSTObjectOutput os = conf.getObjectOutput();
        os.writeObject(o);
        os.flush();
        rv = os.getCopyOfWrittenBuffer();
    } catch (IOException e) {
        throw new IllegalArgumentException("Non-serializable object", e);
    }
    return rv;
}
 
开发者ID:tootedom,项目名称:spray-cache-spymemcached,代码行数:19,代码来源:FastSerializingTranscoder.java

示例3: marshal

import de.ruedigermoeller.serialization.FSTObjectOutput; //导入方法依赖的package包/类
@Override
public void marshal(OutputStream stream, Object obj) {
    FSTObjectOutput out = conf.getObjectOutput(stream);
    try {
        out.writeObject( obj, Mesh.class );
        out.flush();
    } catch (IOException e) {
        e.printStackTrace();
    }
}
 
开发者ID:intigonzalez,项目名称:shared-memory-queue,代码行数:11,代码来源:FSTMarshalling.java

示例4: encode

import de.ruedigermoeller.serialization.FSTObjectOutput; //导入方法依赖的package包/类
@Override
public void encode(OutputStream out, Serializable msg) throws Exception
{
	FSTObjectOutput fout = conf.getObjectOutput(out);
	fout.writeObject(msg);
	fout.flush();
    out.close();
}
 
开发者ID:liulhdarks,项目名称:darks-grid,代码行数:9,代码来源:FSTCodec.java

示例5: serialize

import de.ruedigermoeller.serialization.FSTObjectOutput; //导入方法依赖的package包/类
@Override
public <T> byte[] serialize(T obj) throws IOException {
    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    FSTObjectOutput out = conf.getObjectOutput(bos);
    out.writeObject( obj, Bean.class );
    out.flush();

    return bos.toByteArray();
}
 
开发者ID:bgranvea,项目名称:offheapstore-benchmark,代码行数:10,代码来源:DirectMemoryStore.java


注:本文中的de.ruedigermoeller.serialization.FSTObjectOutput.flush方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。