All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gluonhq.charm.down.plugins.LifecycleService Maven / Gradle / Ivy

There is a newer version: 3.8.6
Show newest version
/*
 * Copyright (c) 2016, Gluon
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.

 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL GLUON BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package com.gluonhq.charm.down.plugins;

/**
 * The lifecycle service provides a way to listen for events when the application is
 * being paused (put in the background) and resumed (brought back to the foreground).
 * It also allows the developer to properly shutdown the application.
 *
 * 

Example

*
 * {@code Services.get(LifecycleService.class).ifPresent(service -> {
 *      service.addListener(LifecycleEvent.PAUSE, () -> System.out.println("Application is paused."));
 *      service.addListener(LifecycleEvent.RESUME, () -> System.out.println("Application is resumed."));
 *  });}
* *

Android Configuration: none

*

iOS Configuration: none

* * @see LifecycleEvent * @since 3.0.0 */ public interface LifecycleService { /** * Adds a life cycle event listener to the native platform, to be notified of * {@link LifecycleEvent} events. * * @param lifecycleEvent The type of event to listen for. * @param eventHandler The event handler that will be called when the event fires. */ void addListener(LifecycleEvent lifecycleEvent, Runnable eventHandler); /** * Removes a previously installed event handler. If no such event handler is found, * this method is a no-op. * * @param lifecycleEvent The type of event that was being listened to. * @param eventHandler The event handler that should be removed. */ void removeListener(LifecycleEvent lifecycleEvent, Runnable eventHandler); /** * Initiates the process of shutting down the application that called this method. * This removes the need to perform any platform-specific shutdown routines. */ void shutdown(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy