io.scalecube.gateway.core.Signal Maven / Gradle / Ivy
package io.scalecube.gateway.core;
public enum Signal {
COMPLETE(1), ERROR(2), CANCEL(3);
private final int code;
Signal(int code) {
this.code = code;
}
public int code() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy