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

io.split.engine.common.PushManager Maven / Gradle / Ivy

package io.split.engine.common;

public interface PushManager {

    enum Status {
        STREAMING_READY,
        STREAMING_BACKOFF,
        STREAMING_DOWN,
        STREAMING_OFF
    }

    void start();
    void stop();
    void startWorkers();
    void stopWorkers();
    void scheduleConnectionReset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy