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

io.jsync.app.core.service.ClusterService Maven / Gradle / Ivy

There is a newer version: 1.10.13
Show newest version
package io.jsync.app.core.service;

import io.jsync.app.core.Cluster;

/**
 * This interface provides a simple way to create cluster services that are destined to be
 * started and stopped when the cluster starts and stops. These
 */
public interface ClusterService {

    void start(Cluster owner);

    void stop();

    String name();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy