com.hedera.hashgraph.sdk.proto.ThrottleGroupOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-full Show documentation
Show all versions of sdk-full Show documentation
Hedera™ Hashgraph SDK for Java
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: throttle_definitions.proto
// Protobuf Java Version: 3.25.3
package com.hedera.hashgraph.sdk.proto;
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.hedera.hashgraph.sdk.proto.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();
}