Class: Kaltura::KalturaSchedulerWorker

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#avg_waitObject

Avarage time between creation and queue time



5547
5548
5549
# File 'lib/kaltura_types.rb', line 5547

def avg_wait
  @avg_wait
end

#avg_workObject

Avarage time between queue time end finish time



5549
5550
5551
# File 'lib/kaltura_types.rb', line 5549

def avg_work
  @avg_work
end

#configsObject

Array of the last configs



5543
5544
5545
# File 'lib/kaltura_types.rb', line 5543

def configs
  @configs
end

#configured_idObject

The id as configured in the batch config



5529
5530
5531
# File 'lib/kaltura_types.rb', line 5529

def configured_id
  @configured_id
end

#idObject

The id of the Worker



5527
5528
5529
# File 'lib/kaltura_types.rb', line 5527

def id
  @id
end

#last_statusObject

last status time



5551
5552
5553
# File 'lib/kaltura_types.rb', line 5551

def last_status
  @last_status
end

#last_status_strObject

last status formated



5553
5554
5555
# File 'lib/kaltura_types.rb', line 5553

def last_status_str
  @last_status_str
end

#locked_jobsObject

Array of jobs that locked to this worker



5545
5546
5547
# File 'lib/kaltura_types.rb', line 5545

def locked_jobs
  @locked_jobs
end

#nameObject

The scheduler name



5539
5540
5541
# File 'lib/kaltura_types.rb', line 5539

def name
  @name
end

#scheduler_configured_idObject

The id of the scheduler as configured in the batch config



5533
5534
5535
# File 'lib/kaltura_types.rb', line 5533

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the Scheduler



5531
5532
5533
# File 'lib/kaltura_types.rb', line 5531

def scheduler_id
  @scheduler_id
end

#statusesObject

Array of the last statuses



5541
5542
5543
# File 'lib/kaltura_types.rb', line 5541

def statuses
  @statuses
end

#typeObject

The worker type



5535
5536
5537
# File 'lib/kaltura_types.rb', line 5535

def type
  @type
end

#type_nameObject

The friendly name of the type



5537
5538
5539
# File 'lib/kaltura_types.rb', line 5537

def type_name
  @type_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
# File 'lib/kaltura_types.rb', line 5577

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['configuredId'] != nil
		self.configured_id = xml_element.elements['configuredId'].text
	end
	if xml_element.elements['schedulerId'] != nil
		self.scheduler_id = xml_element.elements['schedulerId'].text
	end
	if xml_element.elements['schedulerConfiguredId'] != nil
		self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text
	end
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['typeName'] != nil
		self.type_name = xml_element.elements['typeName'].text
	end
	if xml_element.elements['name'] != nil
		self.name = xml_element.elements['name'].text
	end
	if xml_element.elements['statuses'] != nil
		self.statuses = KalturaClientBase.object_from_xml(xml_element.elements['statuses'], 'KalturaSchedulerStatus')
	end
	if xml_element.elements['configs'] != nil
		self.configs = KalturaClientBase.object_from_xml(xml_element.elements['configs'], 'KalturaSchedulerConfig')
	end
	if xml_element.elements['lockedJobs'] != nil
		self.locked_jobs = KalturaClientBase.object_from_xml(xml_element.elements['lockedJobs'], 'KalturaBatchJob')
	end
	if xml_element.elements['avgWait'] != nil
		self.avg_wait = xml_element.elements['avgWait'].text
	end
	if xml_element.elements['avgWork'] != nil
		self.avg_work = xml_element.elements['avgWork'].text
	end
	if xml_element.elements['lastStatus'] != nil
		self.last_status = xml_element.elements['lastStatus'].text
	end
	if xml_element.elements['lastStatusStr'] != nil
		self.last_status_str = xml_element.elements['lastStatusStr'].text
	end
end