Interface TerminatingResponseAction<RespT>

All Superinterfaces:
ResponseAction<RespT>

public interface TerminatingResponseAction<RespT> extends ResponseAction<RespT>
Author:
Fadelis
  • Method Summary

    Modifier and Type
    Method
    Description
    default boolean
    Determines if the ResponseAction is a terminating action.

    Methods inherited from interface org.grpcmock.definitions.response.ResponseAction

    execute
  • Method Details

    • isTerminating

      default boolean isTerminating()
      Description copied from interface: ResponseAction
      Determines if the ResponseAction is a terminating action. By default it is false and will be true for exception actions, which terminate the gRPC call.
      Specified by:
      isTerminating in interface ResponseAction<RespT>