public class

ServiceLifecycleDispatcher

extends java.lang.Object

 java.lang.Object

↳androidx.lifecycle.ServiceLifecycleDispatcher

Gradle dependencies

compile group: 'androidx.lifecycle', name: 'lifecycle-service', version: '2.5.0-rc01'

  • groupId: androidx.lifecycle
  • artifactId: lifecycle-service
  • version: 2.5.0-rc01

Artifact androidx.lifecycle:lifecycle-service:2.5.0-rc01 it located at Google repository (https://maven.google.com/)

Androidx class mapping:

androidx.lifecycle.ServiceLifecycleDispatcher android.arch.lifecycle.ServiceLifecycleDispatcher

Overview

Helper class to dispatch lifecycle events for a service. Use it only if it is impossible to use LifecycleService.

Summary

Constructors
publicServiceLifecycleDispatcher(LifecycleOwner provider)

Methods
public LifecyclegetLifecycle()

public voidonServicePreSuperOnBind()

Must be a first call in method, even before super.onBind call.

public voidonServicePreSuperOnCreate()

Must be a first call in method, even before super.onCreate call.

public voidonServicePreSuperOnDestroy()

Must be a first call in method, even before super.OnDestroy call.

public voidonServicePreSuperOnStart()

Must be a first call in or methods, even before a corresponding super call.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public ServiceLifecycleDispatcher(LifecycleOwner provider)

Parameters:

provider: LifecycleOwner for a service, usually it is a service itself

Methods

public void onServicePreSuperOnCreate()

Must be a first call in method, even before super.onCreate call.

public void onServicePreSuperOnBind()

Must be a first call in method, even before super.onBind call.

public void onServicePreSuperOnStart()

Must be a first call in or methods, even before a corresponding super call.

public void onServicePreSuperOnDestroy()

Must be a first call in method, even before super.OnDestroy call.

public Lifecycle getLifecycle()

Returns:

Lifecycle for the given LifecycleOwner

Source

/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.lifecycle;

import android.app.Service;
import android.content.Intent;
import android.os.Handler;

import androidx.annotation.NonNull;

/**
 * Helper class to dispatch lifecycle events for a service. Use it only if it is impossible
 * to use {@link LifecycleService}.
 */
@SuppressWarnings("WeakerAccess")
public class ServiceLifecycleDispatcher {
    private final LifecycleRegistry mRegistry;
    private final Handler mHandler;
    private DispatchRunnable mLastDispatchRunnable;

    /**
     * @param provider {@link LifecycleOwner} for a service, usually it is a service itself
     */
    @SuppressWarnings("deprecation")
    public ServiceLifecycleDispatcher(@NonNull LifecycleOwner provider) {
        mRegistry = new LifecycleRegistry(provider);
        mHandler = new Handler();
    }

    private void postDispatchRunnable(Lifecycle.Event event) {
        if (mLastDispatchRunnable != null) {
            mLastDispatchRunnable.run();
        }
        mLastDispatchRunnable = new DispatchRunnable(mRegistry, event);
        mHandler.postAtFrontOfQueue(mLastDispatchRunnable);
    }

    /**
     * Must be a first call in {@link Service#onCreate()} method, even before super.onCreate call.
     */
    public void onServicePreSuperOnCreate() {
        postDispatchRunnable(Lifecycle.Event.ON_CREATE);
    }

    /**
     * Must be a first call in {@link Service#onBind(Intent)} method, even before super.onBind
     * call.
     */
    public void onServicePreSuperOnBind() {
        postDispatchRunnable(Lifecycle.Event.ON_START);
    }

    /**
     * Must be a first call in {@link Service#onStart(Intent, int)} or
     * {@link Service#onStartCommand(Intent, int, int)} methods, even before
     * a corresponding super call.
     */
    public void onServicePreSuperOnStart() {
        postDispatchRunnable(Lifecycle.Event.ON_START);
    }

    /**
     * Must be a first call in {@link Service#onDestroy()} method, even before super.OnDestroy
     * call.
     */
    public void onServicePreSuperOnDestroy() {
        postDispatchRunnable(Lifecycle.Event.ON_STOP);
        postDispatchRunnable(Lifecycle.Event.ON_DESTROY);
    }

    /**
     * @return {@link Lifecycle} for the given {@link LifecycleOwner}
     */
    @NonNull
    public Lifecycle getLifecycle() {
        return mRegistry;
    }

    static class DispatchRunnable implements Runnable {
        private final LifecycleRegistry mRegistry;
        final Lifecycle.Event mEvent;
        private boolean mWasExecuted = false;

        DispatchRunnable(@NonNull LifecycleRegistry registry, Lifecycle.Event event) {
            mRegistry = registry;
            mEvent = event;
        }

        @Override
        public void run() {
            if (!mWasExecuted) {
                mRegistry.handleLifecycleEvent(mEvent);
                mWasExecuted = true;
            }
        }
    }
}