本文整理汇总了Java中com.google.ipc.invalidation.ticl.ProtocolHandler.ServerMessageHeader类的典型用法代码示例。如果您正苦于以下问题:Java ServerMessageHeader类的具体用法?Java ServerMessageHeader怎么用?Java ServerMessageHeader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ServerMessageHeader类属于com.google.ipc.invalidation.ticl.ProtocolHandler包,在下文中一共展示了ServerMessageHeader类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handleIncomingHeader
import com.google.ipc.invalidation.ticl.ProtocolHandler.ServerMessageHeader; //导入依赖的package包/类
/** Handles a server {@code header}. */
private void handleIncomingHeader(ServerMessageHeader header) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
Preconditions.checkState(nonce == null,
"Cannot process server header with non-null nonce (have %s): %s", nonce, header);
if (header.registrationSummary != null) {
// We've received a summary from the server, so if we were suppressing
// registrations, we should now allow them to go to the registrar.
shouldSendRegistrations = true;
// Pass the registration summary to the registration manager. If we are now in agreement
// with the server and we had any pending operations, we can tell the listener that those
// operations have succeeded.
Set<ProtoWrapper<RegistrationP>> upcalls =
registrationManager.informServerRegistrationSummary(header.registrationSummary);
logger.fine("Receivced new server registration summary (%s); will make %s upcalls",
header.registrationSummary, upcalls.size());
for (ProtoWrapper<RegistrationP> upcall : upcalls) {
RegistrationP registration = upcall.getProto();
ObjectId objectId = ProtoConverter.convertFromObjectIdProto(registration.getObjectId());
RegistrationState regState = convertOpTypeToRegState(registration.getOpType());
listener.informRegistrationStatus(this, objectId, regState);
}
}
}
示例2: handleIncomingHeader
import com.google.ipc.invalidation.ticl.ProtocolHandler.ServerMessageHeader; //导入依赖的package包/类
/** Handles a server {@code header}. */
private void handleIncomingHeader(ServerMessageHeader header) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
if (nonce != null) {
throw new IllegalStateException(
"Cannot process server header with non-null nonce (have " + nonce + "): " + header);
}
if (header.registrationSummary != null) {
// We've received a summary from the server, so if we were suppressing registrations, we
// should now allow them to go to the registrar.
shouldSendRegistrations = true;
// Pass the registration summary to the registration manager. If we are now in agreement
// with the server and we had any pending operations, we can tell the listener that those
// operations have succeeded.
Set<RegistrationP> upcalls =
registrationManager.informServerRegistrationSummary(header.registrationSummary);
logger.fine("Received new server registration summary (%s); will make %s upcalls",
header.registrationSummary, upcalls.size());
for (RegistrationP registration : upcalls) {
ObjectId objectId =
ProtoWrapperConverter.convertFromObjectIdProto(registration.getObjectId());
RegistrationState regState = convertOpTypeToRegState(registration.getOpType());
listener.informRegistrationStatus(this, objectId, regState);
}
}
}
示例3: handleErrorMessage
import com.google.ipc.invalidation.ticl.ProtocolHandler.ServerMessageHeader; //导入依赖的package包/类
/** Handles an error message. */
private void handleErrorMessage(ServerMessageHeader header, int code, String description) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
// If it is an auth failure, we shut down the ticl.
logger.severe("Received error message: %s, %s, %s", header, code, description);
// Translate the code to error reason.
int reason;
switch (code) {
case ErrorMessage.Code.AUTH_FAILURE:
reason = ErrorInfo.ErrorReason.AUTH_FAILURE;
break;
case ErrorMessage.Code.UNKNOWN_FAILURE:
default:
reason = ErrorInfo.ErrorReason.UNKNOWN_FAILURE;
break;
}
// Issue an informError to the application.
ErrorInfo errorInfo = ErrorInfo.newInstance(reason, false, description, null);
listener.informError(this, errorInfo);
// If this is an auth failure, remove registrations and stop the Ticl. Otherwise do nothing.
if (code != ErrorMessage.Code.AUTH_FAILURE) {
return;
}
// If there are any registrations, remove them and issue registration failure.
Collection<ObjectIdP> desiredRegistrations = registrationManager.removeRegisteredObjects();
logger.warning("Issuing failure for %s objects", desiredRegistrations.size());
for (ObjectIdP objectId : desiredRegistrations) {
listener.informRegistrationFailure(this,
ProtoWrapperConverter.convertFromObjectIdProto(objectId), false,
"Auth error: " + description);
}
}
示例4: handleErrorMessage
import com.google.ipc.invalidation.ticl.ProtocolHandler.ServerMessageHeader; //导入依赖的package包/类
/** Handles an error message. */
private void handleErrorMessage(ServerMessageHeader header,
ErrorMessage.Code code, String description) {
Preconditions.checkState(internalScheduler.isRunningOnThread(), "Not on internal thread");
// If it is an auth failure, we shut down the ticl.
logger.severe("Received error message: %s, %s, %s", header, code, description);
// Translate the code to error reason.
int reason;
switch (code) {
case AUTH_FAILURE:
reason = ErrorInfo.ErrorReason.AUTH_FAILURE;
break;
case UNKNOWN_FAILURE:
reason = ErrorInfo.ErrorReason.UNKNOWN_FAILURE;
break;
default:
reason = ErrorInfo.ErrorReason.UNKNOWN_FAILURE;
break;
}
// Issue an informError to the application.
ErrorInfo errorInfo = ErrorInfo.newInstance(reason, false, description, null);
listener.informError(this, errorInfo);
// If this is an auth failure, remove registrations and stop the Ticl. Otherwise do nothing.
if (code != ErrorMessage.Code.AUTH_FAILURE) {
return;
}
// If there are any registrations, remove them and issue registration failure.
Collection<ProtoWrapper<ObjectIdP>> desiredRegistrations =
registrationManager.removeRegisteredObjects();
logger.warning("Issuing failure for %s objects", desiredRegistrations.size());
for (ProtoWrapper<ObjectIdP> objectIdWrapper : desiredRegistrations) {
ObjectIdP objectId = objectIdWrapper.getProto();
listener.informRegistrationFailure(this,
ProtoConverter.convertFromObjectIdProto(objectId), false, "Auth error: " + description);
}
}