當前位置: 首頁>>代碼示例>>Java>>正文


Java PofReader.readLong方法代碼示例

本文整理匯總了Java中com.tangosol.io.pof.PofReader.readLong方法的典型用法代碼示例。如果您正苦於以下問題:Java PofReader.readLong方法的具體用法?Java PofReader.readLong怎麽用?Java PofReader.readLong使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.tangosol.io.pof.PofReader的用法示例。


在下文中一共展示了PofReader.readLong方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: deserialize

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
@Override
public Object deserialize(PofReader in) throws IOException {

	XDMElement xData = new XDMElement(
			in.readLong(0),
			in.readLong(1),
			in.readString(2));
	in.readRemainder();
	return xData;
}
 
開發者ID:dsukhoroslov,項目名稱:bagri,代碼行數:11,代碼來源:XDMElementPofSerializer.java

示例2: deserialize

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
@Override
public Object deserialize(PofReader in) throws IOException {
	
	XDMDocument doc = new XDMDocument(in.readLong(0),
			in.readString(1),
			in.readInt(2),
			in.readInt(3),
			(java.util.Date) in.readObject(4),
			in.readString(5),
			in.readString(6));
	in.readRemainder();
	return doc;
}
 
開發者ID:dsukhoroslov,項目名稱:bagri,代碼行數:14,代碼來源:XDMDocumentPofSerializer.java

示例3: deserialize

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
@Override
public Object deserialize(PofReader pofReader) throws IOException {
    Date date = new Date(pofReader.readLong(0));
    pofReader.readRemainder();
    return date;
}
 
開發者ID:dsukhoroslov,項目名稱:bagri,代碼行數:7,代碼來源:DatePofSerializer.java

示例4: readExternal

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
@Override
public void readExternal(PofReader in) throws IOException {
	documentKey = in.readLong(0);
	pathId = in.readInt(1);
}
 
開發者ID:dsukhoroslov,項目名稱:bagri,代碼行數:6,代碼來源:DataDocumentKey.java

示例5: readExternal

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
@Override
public void readExternal(PofReader in) throws IOException {
	setPath(in.readString(0));
	documentId = in.readLong(1);
}
 
開發者ID:dsukhoroslov,項目名稱:bagri,代碼行數:6,代碼來源:PathDocumentKey.java

示例6: readExternal

import com.tangosol.io.pof.PofReader; //導入方法依賴的package包/類
public void readExternal(PofReader reader) throws IOException {
   value = reader.readByteArray(VALUE);
   cas = reader.readLong(CAS);
   flags = reader.readInt(FLAGS);
}
 
開發者ID:C2B2,項目名稱:memcached-4-coherence,代碼行數:6,代碼來源:CacheEntry.java


注:本文中的com.tangosol.io.pof.PofReader.readLong方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。