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

org.kiwiproject.curator.leader.ServiceDescriptor Maven / Gradle / Ivy

Go to download

This is a small library that integrates Apache Curator's Leader Latch recipe into a Dropwizard service.

There is a newer version: 2.3.1
Show newest version
package org.kiwiproject.curator.leader;

import lombok.Builder;
import lombok.Value;

/**
 * Value class that contains metadata about a service that participates in a leader latch.
 */
@Value
@Builder
public class ServiceDescriptor {
    String name;
    String version;
    String hostname;
    int port;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy