All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperledger.fabric.client.BlockEventsRequest Maven / Gradle / Ivy

/*
 * Copyright 2022 IBM All Rights Reserved.
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package org.hyperledger.fabric.client;

import org.hyperledger.fabric.protos.common.Block;

/**
 * A Fabric Gateway call to obtain block events. Supports off-line signing flow using
 * {@link Gateway#newSignedBlockEventsRequest(byte[], byte[])}.
 */
public interface BlockEventsRequest extends EventsRequest {
    /**
     * Builder used to create a new block events request. The default behavior is to read events from the next
     * committed block.
     */
    interface Builder extends EventsBuilder {
        @Override
        Builder startBlock(long blockNumber);

        @Override
        Builder checkpoint(Checkpoint checkpoint);

        @Override
        BlockEventsRequest build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy