com.hederahashgraph.api.proto.java.ThrottleGroupOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: throttle_definitions.proto
package com.hederahashgraph.api.proto.java;
public interface ThrottleGroupOrBuilder extends
// @@protoc_insertion_point(interface_extends:proto.ThrottleGroup)
com.google.protobuf.MessageOrBuilder {
/**
*
**
* The operations to be throttled
*
*
* repeated .proto.HederaFunctionality operations = 1;
* @return A list containing the operations.
*/
java.util.List getOperationsList();
/**
*
**
* The operations to be throttled
*
*
* repeated .proto.HederaFunctionality operations = 1;
* @return The count of operations.
*/
int getOperationsCount();
/**
*
**
* The operations to be throttled
*
*
* repeated .proto.HederaFunctionality operations = 1;
* @param index The index of the element to return.
* @return The operations at the given index.
*/
com.hederahashgraph.api.proto.java.HederaFunctionality getOperations(int index);
/**
*
**
* The operations to be throttled
*
*
* repeated .proto.HederaFunctionality operations = 1;
* @return A list containing the enum numeric values on the wire for operations.
*/
java.util.List
getOperationsValueList();
/**
*
**
* The operations to be throttled
*
*
* repeated .proto.HederaFunctionality operations = 1;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of operations at the given index.
*/
int getOperationsValue(int index);
/**
*
**
* The number of total operations per second across the entire network, multiplied by 1000. So, to
* choose 3 operations per second (which on a network of 30 nodes is a tenth of an operation per
* second for each node), set milliOpsPerSec = 3000. And to choose 3.6 ops per second, use
* milliOpsPerSec = 3600. Minimum allowed value is 1, and maximum allowed value is 9223372.
*
*
* uint64 milliOpsPerSec = 2;
* @return The milliOpsPerSec.
*/
long getMilliOpsPerSec();
}