Class: Struct::BatchResult

Inherits:
Object
  • Object
show all
Defined in:
src/ruby/lib/grpc/generic/active_call.rb

Overview

BatchResult is the struct returned by calls to call#start_batch.

Instance Method Summary collapse

Instance Method Details

#check_statusObject

check_status returns the status, raising an error if the status is non-nil and not OK.



39
40
41
42
43
44
45
46
47
48
49
50
# File 'src/ruby/lib/grpc/generic/active_call.rb', line 39

def check_status
  return nil if status.nil?
  fail GRPC::Cancelled if status.code == GRPC::Core::StatusCodes::CANCELLED
  if status.code != GRPC::Core::StatusCodes::OK
    GRPC.logger.debug("Failing with status #{status}")
    # raise BadStatus, propagating the metadata if present.
    md = status.
    fail GRPC::BadStatus.new_status_exception(
      status.code, status.details, md)
  end
  status
end