Package io.nem.sdk.openapi.vertx.api
Interface BlockRoutesApi
-
- All Known Implementing Classes:
BlockRoutesApiImpl
public interface BlockRoutesApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgetBlockByHeight(java.math.BigInteger height, io.vertx.core.Handler<io.vertx.core.AsyncResult<BlockInfoDTO>> handler)voidgetBlocksByHeightWithLimit(java.math.BigInteger height, java.lang.Integer limit, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<BlockInfoDTO>>> handler)voidgetBlockTransactions(java.math.BigInteger height, java.lang.Integer pageSize, java.lang.String id, java.lang.String ordering, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<TransactionInfoDTO>>> handler)voidgetMerkleTransaction(java.math.BigInteger height, java.lang.String hash, io.vertx.core.Handler<io.vertx.core.AsyncResult<MerkleProofInfoDTO>> handler)
-
-
-
Method Detail
-
getBlockByHeight
void getBlockByHeight(java.math.BigInteger height, io.vertx.core.Handler<io.vertx.core.AsyncResult<BlockInfoDTO>> handler)
-
getBlockTransactions
void getBlockTransactions(java.math.BigInteger height, java.lang.Integer pageSize, java.lang.String id, java.lang.String ordering, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<TransactionInfoDTO>>> handler)
-
getBlocksByHeightWithLimit
void getBlocksByHeightWithLimit(java.math.BigInteger height, java.lang.Integer limit, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.util.List<BlockInfoDTO>>> handler)
-
getMerkleTransaction
void getMerkleTransaction(java.math.BigInteger height, java.lang.String hash, io.vertx.core.Handler<io.vertx.core.AsyncResult<MerkleProofInfoDTO>> handler)
-
-