Class: Remi::SfBulkHelper::SfBulkQuery

Inherits:
SfBulkOperation show all
Defined in:
lib/remi/sf_bulk_helper.rb

Overview

Public: Class used to execute SF Bulk Query operations (see SfBulkOperation class for more details).

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from SfBulkOperation

#as_lookup, #info, #initialize, #raw_result, #result, #sf_bulk

Constructor Details

This class inherits a constructor from Remi::SfBulkHelper::SfBulkOperation

Class Method Details

.query(*args, **kargs) ⇒ Object



246
247
248
# File 'lib/remi/sf_bulk_helper.rb', line 246

def self.query(*args,**kargs)
  SfBulkQuery.new(*args,**kargs).tap { |sf| sf.send(:execute) }
end

Instance Method Details

#failed_records?Boolean

Returns:

  • (Boolean)


254
255
256
# File 'lib/remi/sf_bulk_helper.rb', line 254

def failed_records?
  false
end

#operationObject



250
251
252
# File 'lib/remi/sf_bulk_helper.rb', line 250

def operation
  :query
end