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


Java InvalidationIntentProtocol.isRegisteredTypesChange方法代码示例

本文整理汇总了Java中org.chromium.sync.notifier.InvalidationIntentProtocol.isRegisteredTypesChange方法的典型用法代码示例。如果您正苦于以下问题:Java InvalidationIntentProtocol.isRegisteredTypesChange方法的具体用法?Java InvalidationIntentProtocol.isRegisteredTypesChange怎么用?Java InvalidationIntentProtocol.isRegisteredTypesChange使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.chromium.sync.notifier.InvalidationIntentProtocol的用法示例。


在下文中一共展示了InvalidationIntentProtocol.isRegisteredTypesChange方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onHandleIntent

import org.chromium.sync.notifier.InvalidationIntentProtocol; //导入方法依赖的package包/类
@Override
public void onHandleIntent(Intent intent) {
    // Ensure that a client is or is not running, as appropriate, and that it is for the
    // correct account. ensureAccount will stop the client if account is non-null and doesn't
    // match the stored account. Then, if a client should be running, ensureClientStartState
    // will start a new one if needed. I.e., these two functions work together to restart the
    // client when the account changes.
    Account account = intent.hasExtra(InvalidationIntentProtocol.EXTRA_ACCOUNT) ?
            (Account) intent.getParcelableExtra(InvalidationIntentProtocol.EXTRA_ACCOUNT)
            : null;
    ensureAccount(account);
    ensureClientStartState();

    // Handle the intent.
    if (InvalidationIntentProtocol.isStop(intent) && sIsClientStarted) {
        // If the intent requests that the client be stopped, stop it.
        stopClient();
    } else if (InvalidationIntentProtocol.isRegisteredTypesChange(intent)) {
        // If the intent requests a change in registrations, change them.
        List<String> regTypes = intent.getStringArrayListExtra(
                InvalidationIntentProtocol.EXTRA_REGISTERED_TYPES);
        setRegisteredTypes(regTypes != null ? new HashSet<String>(regTypes) : null,
                InvalidationIntentProtocol.getRegisteredObjectIds(intent));
    } else {
        // Otherwise, we don't recognize the intent. Pass it to the notification client service.
        super.onHandleIntent(intent);
    }
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:29,代码来源:InvalidationService.java


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