class Google::Cloud::Bigquery::Table::AsyncInserter

def stop

Returns:
  • (AsyncInserter) - returns self so calls can be chained.
def stop
  synchronize do
    break if @stopped
    @stopped = true
    push_batch_request!
    @cond.signal
  end
  self
end