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

io.automatiko.addons.fault.tolerance.CircuitClosedEvent Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
package io.automatiko.addons.fault.tolerance;

public class CircuitClosedEvent {

    private final String name;

    public CircuitClosedEvent(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    @Override
    public String toString() {
        return "CircuitOpenedEvent [name=" + name + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy