class DTK::Client::Operation::Service::TaskStatus::StreamMode
Constants
- WaitWhenNoResults
Private Class Methods
query_string_hash(opts = {})
click to toggle source
This uses a cursor based interface to the server
start_index: START_INDEX end_index: END_INDEX
convention is start_position = 0 and end_position = 0 means top level task with start time
Calls superclass method
# File lib/client/operation/service/task_status/stream_mode.rb, line 38 def self.query_string_hash(opts = {}) ret = super(opts) ret.merge(:start_index => opts[:start_index], :end_index => opts[:end_index]) end
Public Instance Methods
get_and_render(opts = {})
click to toggle source
# File lib/client/operation/service/task_status/stream_mode.rb, line 24 def get_and_render(opts = {}) Element.get_and_render_task_start(self, opts) Element.get_and_render_stages(self, {:wait => WaitWhenNoResults}.merge(opts)) return end