本文整理汇总了Java中com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask类的典型用法代码示例。如果您正苦于以下问题:Java BatchingTask类的具体用法?Java BatchingTask怎么用?Java BatchingTask使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BatchingTask类属于com.google.ipc.invalidation.ticl.InvalidationClientCore包,在下文中一共展示了BatchingTask类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: sendInitializeMessage
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends a message to the server to request a client token.
*
* @param applicationClientId application-specific client id
* @param nonce nonce for the request
* @param debugString information to identify the caller
*/
void sendInitializeMessage(ApplicationClientIdP applicationClientId, Bytes nonce,
BatchingTask batchingTask, String debugString) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
if (applicationClientId.getClientType() != clientType) {
// This condition is not fatal, but it probably represents a bug somewhere if it occurs.
logger.warning(
"Client type in application id does not match constructor-provided type: %s vs %s",
applicationClientId, clientType);
}
// Simply store the message in pendingInitializeMessage and send it when the batching task runs.
InitializeMessage initializeMsg = InitializeMessage.create(clientType, nonce,
applicationClientId, DigestSerializationType.BYTE_BASED);
batcher.setInitializeMessage(initializeMsg);
logger.info("Batching initialize message for client: %s, %s", debugString, initializeMsg);
batchingTask.ensureScheduled(debugString);
}
开发者ID:mogoweb,项目名称:365browser,代码行数:25,代码来源:ProtocolHandler.java
示例2: sendInfoMessage
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends an info message to the server with the performance counters supplied
* in {@code performanceCounters} and the config supplies in
* {@code configParams}.
*
* @param requestServerRegistrationSummary indicates whether to request the
* server's registration summary
*/
void sendInfoMessage(List<SimplePair<String, Integer>> performanceCounters,
ClientConfigP clientConfig, boolean requestServerRegistrationSummary,
BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
List<PropertyRecord> performanceCounterRecords =
new ArrayList<PropertyRecord>(performanceCounters.size());
for (SimplePair<String, Integer> counter : performanceCounters) {
performanceCounterRecords.add(PropertyRecord.create(counter.first, counter.second));
}
InfoMessage infoMessage = InfoMessage.create(clientVersion, /* configParameter */ null,
performanceCounterRecords, requestServerRegistrationSummary, clientConfig);
// Simply store the message in pendingInfoMessage and send it when the batching task runs.
batcher.setInfoMessage(infoMessage);
batchingTask.ensureScheduled("Send-info");
}
开发者ID:mogoweb,项目名称:365browser,代码行数:26,代码来源:ProtocolHandler.java
示例3: sendInitializeMessage
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends a message to the server to request a client token.
*
* @param applicationClientId application-specific client id
* @param nonce nonce for the request
* @param debugString information to identify the caller
*/
void sendInitializeMessage(ApplicationClientIdP applicationClientId, ByteString nonce,
BatchingTask batchingTask, String debugString) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
if (applicationClientId.getClientType() != clientType) {
// This condition is not fatal, but it probably represents a bug somewhere if it occurs.
logger.warning(
"Client type in application id does not match constructor-provided type: %s vs %s",
applicationClientId, clientType);
}
// Simply store the message in pendingInitializeMessage and send it when the batching task runs.
InitializeMessage initializeMsg = CommonProtos2.newInitializeMessage(clientType,
applicationClientId, nonce, DigestSerializationType.BYTE_BASED);
batcher.setInitializeMessage(initializeMsg);
logger.info("Batching initialize message for client: %s, %s", debugString, initializeMsg);
batchingTask.ensureScheduled(debugString);
}
开发者ID:morristech,项目名称:android-chromium,代码行数:25,代码来源:ProtocolHandler.java
示例4: sendRegistrations
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends a registration request to the server.
*
* @param objectIds object ids on which to (un)register
* @param regOpType whether to register or unregister
*/
void sendRegistrations(Collection<ObjectIdP> objectIds, Integer regOpType,
BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
for (ObjectIdP objectId : objectIds) {
batcher.addRegistration(objectId, regOpType);
}
batchingTask.ensureScheduled("Send-registrations");
}
开发者ID:mogoweb,项目名称:365browser,代码行数:15,代码来源:ProtocolHandler.java
示例5: sendInvalidationAck
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/** Sends an acknowledgement for {@code invalidation} to the server. */
void sendInvalidationAck(InvalidationP invalidation, BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
// We could summarize acks when there are suppressing invalidations - we don't since it is
// unlikely to be too beneficial here.
logger.fine("Sending ack for invalidation %s", invalidation);
batcher.addAck(invalidation);
batchingTask.ensureScheduled("Send-Ack");
}
开发者ID:mogoweb,项目名称:365browser,代码行数:10,代码来源:ProtocolHandler.java
示例6: sendRegistrationSyncSubtree
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends a single registration subtree to the server.
*
* @param regSubtree subtree to send
*/
void sendRegistrationSyncSubtree(RegistrationSubtree regSubtree, BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
batcher.addRegSubtree(regSubtree);
logger.info("Adding subtree: %s", regSubtree);
batchingTask.ensureScheduled("Send-reg-sync");
}
开发者ID:mogoweb,项目名称:365browser,代码行数:12,代码来源:ProtocolHandler.java
示例7: sendInfoMessage
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends an info message to the server with the performance counters supplied
* in {@code performanceCounters} and the config supplies in
* {@code configParams}.
*
* @param requestServerRegistrationSummary indicates whether to request the
* server's registration summary
*/
void sendInfoMessage(List<SimplePair<String, Integer>> performanceCounters,
ClientConfigP clientConfig, boolean requestServerRegistrationSummary,
BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
InfoMessage.Builder infoMessage = InfoMessage.newBuilder()
.setClientVersion(clientVersion);
// Add configuration parameters.
if (clientConfig != null) {
infoMessage.setClientConfig(clientConfig);
}
// Add performance counters.
for (SimplePair<String, Integer> performanceCounter : performanceCounters) {
PropertyRecord counter =
CommonProtos2.newPropertyRecord(performanceCounter.first, performanceCounter.second);
infoMessage.addPerformanceCounter(counter);
}
// Indicate whether we want the server's registration summary sent back.
infoMessage.setServerRegistrationSummaryRequested(requestServerRegistrationSummary);
// Simply store the message in pendingInfoMessage and send it when the batching task runs.
batcher.setInfoMessage(infoMessage.build());
batchingTask.ensureScheduled("Send-info");
}
开发者ID:morristech,项目名称:android-chromium,代码行数:35,代码来源:ProtocolHandler.java
示例8: sendRegistrations
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/**
* Sends a registration request to the server.
*
* @param objectIds object ids on which to (un)register
* @param regOpType whether to register or unregister
*/
void sendRegistrations(Collection<ObjectIdP> objectIds, RegistrationP.OpType regOpType,
BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
for (ObjectIdP objectId : objectIds) {
batcher.addRegistration(objectId, regOpType);
}
batchingTask.ensureScheduled("Send-registrations");
}
开发者ID:morristech,项目名称:android-chromium,代码行数:15,代码来源:ProtocolHandler.java
示例9: sendInvalidationAck
import com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask; //导入依赖的package包/类
/** Sends an acknowledgement for {@code invalidation} to the server. */
void sendInvalidationAck(InvalidationP invalidation, BatchingTask batchingTask) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
// We could do squelching - we don't since it is unlikely to be too beneficial here.
logger.fine("Sending ack for invalidation %s", invalidation);
batcher.addAck(invalidation);
batchingTask.ensureScheduled("Send-Ack");
}
开发者ID:morristech,项目名称:android-chromium,代码行数:9,代码来源:ProtocolHandler.java
注:本文中的com.google.ipc.invalidation.ticl.InvalidationClientCore.BatchingTask类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论