
io.jsync.app.core.service.ClusterService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsync.io Show documentation
Show all versions of jsync.io Show documentation
jsync.io is a non-blocking, event-driven networking framework for Java
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