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


Java CommonInvalidationConstants2类代码示例

本文整理汇总了Java中com.google.ipc.invalidation.common.CommonInvalidationConstants2的典型用法代码示例。如果您正苦于以下问题:Java CommonInvalidationConstants2类的具体用法?Java CommonInvalidationConstants2怎么用?Java CommonInvalidationConstants2使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CommonInvalidationConstants2类属于com.google.ipc.invalidation.common包,在下文中一共展示了CommonInvalidationConstants2类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createClientHeader

import com.google.ipc.invalidation.common.CommonInvalidationConstants2; //导入依赖的package包/类
/** Returns the header to include on a message to the server. */
private ClientHeader.Builder createClientHeader() {
  Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
  ClientHeader.Builder builder = ClientHeader.newBuilder()
      .setProtocolVersion(CommonInvalidationConstants2.PROTOCOL_VERSION)
      .setClientTimeMs(internalScheduler.getCurrentTimeMs())
      .setMessageId(Integer.toString(messageId))
      .setMaxKnownServerTimeMs(lastKnownServerTimeMs)
      .setRegistrationSummary(listener.getRegistrationSummary())
      .setClientType(clientType);
  ByteString clientToken = listener.getClientToken();
  if (clientToken != null) {
    logger.fine("Sending token on client->server message: %s",
        CommonProtoStrings2.toLazyCompactString(clientToken));
    builder.setClientToken(clientToken);
  }
  return builder;
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:19,代码来源:ProtocolHandler.java

示例2: createConfig

import com.google.ipc.invalidation.common.CommonInvalidationConstants2; //导入依赖的package包/类
/** Returns a default config builder for the client. */
public static ClientConfigP.Builder createConfig() {
  return ClientConfigP.newBuilder()
      .setVersion(CommonProtos2.newVersion(CommonInvalidationConstants2.CONFIG_MAJOR_VERSION,
          CommonInvalidationConstants2.CONFIG_MINOR_VERSION))
      .setProtocolHandlerConfig(ProtocolHandler.createConfig());
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:8,代码来源:InvalidationClientCore.java

示例3: createConfigForTest

import com.google.ipc.invalidation.common.CommonInvalidationConstants2; //导入依赖的package包/类
/** Returns a configuration builder with parameters set for unit tests. */
public static ClientConfigP.Builder createConfigForTest() {
  return ClientConfigP.newBuilder()
      .setVersion(CommonProtos2.newVersion(CommonInvalidationConstants2.CONFIG_MAJOR_VERSION,
          CommonInvalidationConstants2.CONFIG_MINOR_VERSION))
      .setProtocolHandlerConfig(ProtocolHandler.createConfigForTest())
      .setNetworkTimeoutDelayMs(2 * 1000)
      .setHeartbeatIntervalMs(5 * 1000)
      .setWriteRetryDelayMs(500);
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:11,代码来源:InvalidationClientCore.java

示例4: handleIncomingMessage

import com.google.ipc.invalidation.common.CommonInvalidationConstants2; //导入依赖的package包/类
/**
 * Handles a message from the server. If the message can be processed (i.e., is valid, is
 * of the right version, and is not a silence message), returns a {@link ParsedMessage}
 * representing it. Otherwise, returns {@code null}.
 * <p>
 * This class intercepts and processes silence messages. In this case, it will discard any other
 * data in the message.
 * <p>
 * Note that this method does <b>not</b> check the session token of any message.
 */
ParsedMessage handleIncomingMessage(byte[] incomingMessage) {
  Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
  ServerToClientMessage message;
  try {
    message = ServerToClientMessage.parseFrom(incomingMessage);
  } catch (InvalidProtocolBufferException exception) {
    logger.warning("Incoming message is unparseable: %s",
        CommonProtoStrings2.toLazyCompactString(incomingMessage));
    return null;
  }

  // Validate the message. If this passes, we can blindly assume valid messages from here on.
  logger.fine("Incoming message: %s", message);
  if (!msgValidator.isValid(message)) {
    statistics.recordError(ClientErrorType.INCOMING_MESSAGE_FAILURE);
    logger.severe("Received invalid message: %s", message);
    return null;
  }

  // Check the version of the message.
  if (message.getHeader().getProtocolVersion().getVersion().getMajorVersion() !=
      CommonInvalidationConstants2.PROTOCOL_MAJOR_VERSION) {
    statistics.recordError(ClientErrorType.PROTOCOL_VERSION_FAILURE);
    logger.severe("Dropping message with incompatible version: %s", message);
    return null;
  }

  // Check if it is a ConfigChangeMessage which indicates that messages should no longer be
  // sent for a certain duration. Perform this check before the token is even checked.
  if (message.hasConfigChangeMessage()) {
    ConfigChangeMessage configChangeMsg = message.getConfigChangeMessage();
    statistics.recordReceivedMessage(ReceivedMessageType.CONFIG_CHANGE);
    if (configChangeMsg.hasNextMessageDelayMs()) {  // Validator has ensured that it is positive.
      nextMessageSendTimeMs =
          internalScheduler.getCurrentTimeMs() + configChangeMsg.getNextMessageDelayMs();
    }
    return null;  // Ignore all other messages in the envelope.
  }

  lastKnownServerTimeMs = Math.max(lastKnownServerTimeMs, message.getHeader().getServerTimeMs());
  return new ParsedMessage(message);
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:53,代码来源:ProtocolHandler.java


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