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

org.sputnikdev.bluetooth.manager.impl.BluetoothObjectGovernor Maven / Gradle / Ivy

package org.sputnikdev.bluetooth.manager.impl;

import org.sputnikdev.bluetooth.manager.BluetoothGovernor;

/**
 *
 * @author Vlad Kolotov
 */
interface BluetoothObjectGovernor extends BluetoothGovernor {

    /**
     * Initializing the governor.
     */
    void init();

    /**
     * Updating the governor.
     */
    void update();

    /**
     * Resetting the governor to be reused later.
     */
    void reset();

    /**
     * Disposing the governor so that it cannot be reused.
     */
    void dispose();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy