本文整理汇总了Java中org.apache.ignite.internal.util.typedef.internal.U.readList方法的典型用法代码示例。如果您正苦于以下问题:Java U.readList方法的具体用法?Java U.readList怎么用?Java U.readList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.ignite.internal.util.typedef.internal.U
的用法示例。
在下文中一共展示了U.readList方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
gridName = U.readString(in);
topVer = in.readLong();
taskMonitoringEnabled = in.readBoolean();
evts = U.readList(in);
evtsEx = (VisorExceptionWrapper)in.readObject();
memoryMetrics = U.readList(in);
memoryMetricsEx = (VisorExceptionWrapper)in.readObject();
caches = U.readList(in);
cachesEx = (VisorExceptionWrapper)in.readObject();
igfss = U.readList(in);
igfsEndpoints = U.readList(in);
igfssEx = (VisorExceptionWrapper)in.readObject();
errCnt = in.readLong();
readyTopVer = (VisorAffinityTopologyVersion)in.readObject();
hasPendingExchange = in.readBoolean();
persistenceMetrics = (VisorPersistenceMetrics)in.readObject();
persistenceMetricsEx = (VisorExceptionWrapper)in.readObject();
rebalance = (protoVer > V1) ? in.readDouble() : -1;
}
示例2: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
active = in.readBoolean();
unhandledEx = U.readMap(in);
gridNames = U.readMap(in);
topVersions = U.readMap(in);
taskMonitoringEnabled = U.readMap(in);
errCnts = U.readMap(in);
evts = U.readList(in);
evtsEx = U.readMap(in);
memoryMetrics = U.readMap(in);
memoryMetricsEx = U.readMap(in);
caches = U.readMap(in);
cachesEx = U.readMap(in);
igfss = U.readMap(in);
igfsEndpoints = U.readMap(in);
igfssEx = U.readMap(in);
readyTopVers = U.readMap(in);
pendingExchanges = U.readMap(in);
persistenceMetrics = U.readMap(in);
persistenceMetricsEx = U.readMap(in);
if (protoVer > V1)
rebalance = U.readMap(in);
}
示例3: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
sqlFuncClss = U.readList(in);
longQryWarnTimeout = in.readLong();
sqlEscapeAll = in.readBoolean();
indexedTypes = U.readList(in);
sqlSchema = U.readString(in);
}
示例4: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
keyType = U.readString(in);
valType = U.readString(in);
keyFields = U.readList(in);
qryFlds = IgfsUtils.readStringMap(in);
aliases = U.readMap(in);
grps = U.readList(in);
tblName = U.readString(in);
keyFieldName = U.readString(in);
valFieldName = U.readString(in);
}
示例5: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
nid = U.readUuid(in);
filePath = U.readString(in);
fileSize = in.readLong();
lastModified = in.readLong();
lines = U.readList(in);
lineNum = in.readInt();
lineCnt = in.readInt();
encoding = U.readString(in);
}
示例6: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
idMapper = U.readString(in);
nameMapper = U.readString(in);
serializer = U.readString(in);
typeCfgs = U.readList(in);
compactFooter = in.readBoolean();
}
示例7: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
typeName = U.readString(in);
typeId = in.readInt();
affinityKeyFieldName = U.readString(in);
fields = U.readList(in);
}
示例8: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
name = U.readString(in);
fields = U.readList(in);
descendings = U.readList(in);
unique = in.readBoolean();
}
示例9: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
sysCacheInitSize = in.readLong();
sysCacheMaxSize = in.readLong();
pageSize = in.readInt();
concLvl = in.readInt();
dfltMemPlcName = U.readString(in);
dfltMemPlcSize = in.readLong();
memPlcs = U.readList(in);
}
示例10: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
cacheName = U.readString(in);
types = U.readList(in);
keyClasses = IgfsUtils.readStringMap(in);
valClasses = IgfsUtils.readStringMap(in);
fields = U.readMap(in);
indexes = U.readMap(in);
}
示例11: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
basic = (VisorBasicConfiguration)in.readObject();
metrics = (VisorMetricsConfiguration)in.readObject();
spis = (VisorSpisConfiguration)in.readObject();
p2p = (VisorPeerToPeerConfiguration)in.readObject();
lifecycle = (VisorLifecycleConfiguration)in.readObject();
execSvc = (VisorExecutorServiceConfiguration)in.readObject();
seg = (VisorSegmentationConfiguration)in.readObject();
inclProps = U.readString(in);
inclEvtTypes = (int[])in.readObject();
rest = (VisorRestConfiguration)in.readObject();
userAttrs = U.readMap(in);
igfss = U.readList(in);
env = U.readMap(in);
sysProps = (Properties)in.readObject();
atomic = (VisorAtomicConfiguration)in.readObject();
txCfg = (VisorTransactionConfiguration)in.readObject();
memCfg = (VisorMemoryConfiguration)in.readObject();
psCfg = (VisorPersistentStoreConfiguration)in.readObject();
storeSesLsnrs = U.readString(in);
warmupClos = U.readString(in);
binaryCfg = (VisorBinaryConfiguration)in.readObject();
cacheKeyCfgs = U.readList(in);
hadoopCfg = (VisorHadoopConfiguration)in.readObject();
sqlConnCfg = (VisorSqlConnectorConfiguration) in.readObject();
srvcCfgs = U.readList(in);
if (protoVer >= V2)
dataStorage = (VisorDataStorageConfiguration)in.readObject();
if (protoVer >= V3)
clnConnCfg = (VisorClientConnectorConfiguration)in.readObject();
}
示例12: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
planner = U.readString(in);
extExecution = in.readBoolean();
finishedJobInfoTtl = in.readLong();
maxParallelTasks = in.readInt();
maxTaskQueueSize = in.readInt();
libNames = U.readList(in);
}
示例13: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
p2pEnabled = in.readBoolean();
p2pMissedResCacheSize = in.readInt();
p2pLocClsPathExcl = U.readList(in);
}
示例14: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
nodes = U.readList(in);
arg = (A)in.readObject();
debug = in.readBoolean();
}
示例15: readExternalData
import org.apache.ignite.internal.util.typedef.internal.U; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override protected void readExternalData(byte protoVer, ObjectInput in) throws IOException, ClassNotFoundException {
name = U.readString(in);
type = QueryIndexType.fromOrdinal(in.readByte());
fields = U.readList(in);
}