sawtooth.sdk.protobuf.EventSubscriptionOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sawtooth-sdk-protos Show documentation
Show all versions of sawtooth-sdk-protos Show documentation
"Java classes generated from Sawtooth proto definition files, to interact with the component, consensus, and other validator interfaces"
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: events.proto
package sawtooth.sdk.protobuf;
public interface EventSubscriptionOrBuilder extends
// @@protoc_insertion_point(interface_extends:EventSubscription)
com.google.protobuf.MessageOrBuilder {
/**
*
* EventSubscription is used when subscribing to events to specify the type
* of events being subscribed to, along with any additional filters. See
* validator/server/events/subscription.py for further explanation.
*
*
* string event_type = 1;
*/
java.lang.String getEventType();
/**
*
* EventSubscription is used when subscribing to events to specify the type
* of events being subscribed to, along with any additional filters. See
* validator/server/events/subscription.py for further explanation.
*
*
* string event_type = 1;
*/
com.google.protobuf.ByteString
getEventTypeBytes();
/**
* repeated .EventFilter filters = 2;
*/
java.util.List
getFiltersList();
/**
* repeated .EventFilter filters = 2;
*/
sawtooth.sdk.protobuf.EventFilter getFilters(int index);
/**
* repeated .EventFilter filters = 2;
*/
int getFiltersCount();
/**
* repeated .EventFilter filters = 2;
*/
java.util.List extends sawtooth.sdk.protobuf.EventFilterOrBuilder>
getFiltersOrBuilderList();
/**
* repeated .EventFilter filters = 2;
*/
sawtooth.sdk.protobuf.EventFilterOrBuilder getFiltersOrBuilder(
int index);
}