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

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