bind method

RunnableBinding<RunInput, CallOptions, RunOutput> bind(
  1. CallOptions options
)

Binds the Runnable to the given options.

  • options - the CallOptions to bind the Runnable with.

Implementation

RunnableBinding<RunInput, CallOptions, RunOutput> bind(
  final CallOptions options,
) {
  return RunnableBinding<RunInput, CallOptions, RunOutput>(
    bound: this,
    options: options,
  );
}