com.ibm.etcd.api.AlarmMemberOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etcd-java Show documentation
Show all versions of etcd-java Show documentation
etcd3 java client and utilities
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: rpc.proto
package com.ibm.etcd.api;
public interface AlarmMemberOrBuilder extends
// @@protoc_insertion_point(interface_extends:etcdserverpb.AlarmMember)
com.google.protobuf.MessageOrBuilder {
/**
*
* memberID is the ID of the member associated with the raised alarm.
*
*
* uint64 memberID = 1;
* @return The memberID.
*/
long getMemberID();
/**
*
* alarm is the type of alarm which has been raised.
*
*
* .etcdserverpb.AlarmType alarm = 2;
* @return The enum numeric value on the wire for alarm.
*/
int getAlarmValue();
/**
*
* alarm is the type of alarm which has been raised.
*
*
* .etcdserverpb.AlarmType alarm = 2;
* @return The alarm.
*/
com.ibm.etcd.api.AlarmType getAlarm();
}