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


Java WakeLockManager类代码示例

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


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

示例1: onReceive

import com.google.ipc.invalidation.ticl.android.c2dm.WakeLockManager; //导入依赖的package包/类
@Override
public final void onReceive(Context context, Intent intent) {
  // This method is final to prevent subclasses from overriding it and introducing errors in
  // the wakelock protocol.
  Class<?> serviceClass = getServiceClass();

  // If the service isn't an AbstractListener subclass, then it will not release the wakelock
  // properly, causing bugs.
  if (!AbstractListener.class.isAssignableFrom(serviceClass)) {
    throw new RuntimeException(
        "Service class is not a subclass of AbstractListener: " + serviceClass);
  }
  String wakelockKey = getWakelockKey(serviceClass);
  intent.setClass(context, serviceClass);

  // To avoid insidious bugs, tell the service which wakelock we acquired. The service will
  // log a warning if the lock it releases is not this lock.
  intent.putExtra(EXTRA_WAKELOCK_NAME, wakelockKey);

  // Acquire the lock and start the service. The service is responsible for releasing the
  // lock.
  WakeLockManager.getInstance(context).acquire(wakelockKey, WAKELOCK_TIMEOUT_MS);
  context.startService(intent);
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:25,代码来源:MultiplexingGcmListener.java

示例2: onHandleIntent

import com.google.ipc.invalidation.ticl.android.c2dm.WakeLockManager; //导入依赖的package包/类
@Override
public final void onHandleIntent(Intent intent) {
  if (intent == null) {
    return;
  }

  // This method is final to prevent subclasses from overriding it and introducing errors in
  // the wakelock protocol.
  try {
    doHandleIntent(intent);
  } finally {
    // Release the wakelock acquired by the receiver. The receiver provides the name of the
    // lock it acquired in the Intent so that we can sanity-check that we are releasing the
    // right lock.
    String receiverAcquiredWakelock = intent.getStringExtra(EXTRA_WAKELOCK_NAME);
    String wakelockToRelease = getWakelockKey(getClass());
    if (!wakelockToRelease.equals(receiverAcquiredWakelock)) {
      logger.warning("Receiver acquired wakelock '%s' but releasing '%s'",
          receiverAcquiredWakelock, wakelockToRelease);
    }
    WakeLockManager wakelockManager = WakeLockManager.getInstance(this);
    wakelockManager.release(wakelockToRelease);
  }
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:25,代码来源:MultiplexingGcmListener.java


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