org.wildfly.clustering.singleton.SingletonService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-singleton-api Show documentation
Show all versions of wildfly-clustering-singleton-api Show documentation
Public API for installing singleton MSC services.
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.singleton;
import org.jboss.msc.service.Service;
/**
* Implemented by the instrumented singleton service.
* @author Paul Ferraro
* @deprecated Replaced by {@link org.wildfly.clustering.singleton.service.SingletonService}.
*/
@Deprecated(forRemoval = true)
public interface SingletonService extends org.wildfly.clustering.singleton.service.SingletonService, Service {
}