com.infomaximum.cluster.component.service.ServiceComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cluster Show documentation
Show all versions of cluster Show documentation
Library for creating a light cluster
package com.infomaximum.cluster.component.service;
import com.infomaximum.cluster.anotation.Info;
import com.infomaximum.cluster.component.service.internal.service.ClusterInputStreamService;
import com.infomaximum.cluster.struct.Component;
@Info(uuid = "com.infomaximum.cluster.component.service")
public class ServiceComponent extends Component {
public final ClusterInputStreamService clusterInputStreamService;
public ServiceComponent() {
this.clusterInputStreamService = new ClusterInputStreamService();
}
}