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

io.dropwizard.discovery.core.ServiceInstanceFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.dropwizard.discovery.core;

import org.apache.curator.x.discovery.ServiceInstance;

/**
 * Factory class to create ServiceInstance for the service.
 *
 * @param 
 *            payload class
 */
public interface ServiceInstanceFactory {
    public Class getPayloadClass();

    public ServiceInstance build(String serviceName,
            CuratorAdvertiser advertiser) throws Exception;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy