本文整理汇总了Java中com.google.ipc.invalidation.external.client.android.service.InvalidationService类的典型用法代码示例。如果您正苦于以下问题:Java InvalidationService类的具体用法?Java InvalidationService怎么用?Java InvalidationService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
InvalidationService类属于com.google.ipc.invalidation.external.client.android.service包,在下文中一共展示了InvalidationService类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: executeServiceRequest
import com.google.ipc.invalidation.external.client.android.service.InvalidationService; //导入依赖的package包/类
/**
* Executes a request against the invalidation service and does common error processing against
* the resulting response. If unable to connect to the service or an error status is received from
* it, a warning will be logged and the request will be dropped.
*
* @param request the request to execute.
*/
private void executeServiceRequest(final Request request) {
serviceBinder.runWhenBound(new BoundWork<InvalidationService>() {
@Override
public void run(InvalidationService service) {
Bundle outBundle = new Bundle();
try {
service.handleRequest(request.getBundle(), outBundle);
} catch (RemoteException exception) {
logger.warning("Remote exeption executing request %s: %s", request,
exception.getMessage());
}
Response response = new Response(outBundle);
response.warnOnFailure();
}
});
}