class Batchly::Request::QueueRequest

QueueRequest is a type of request that supports pub/sub or queue sources Request holds the content of a single message

Attributes

content[RW]

Path for content string

content_path[RW]

Path for loading additional content - Path to container from where code is executed string

id[RW]

id for the Unit of Work string

parameters[RW]

Values for parameters configured via UI hashTable

Public Class Methods

new(id = nil, parameters = nil, content = nil, content_path = nil ) click to toggle source
# File lib/batchly-sdk/request/queue_request.rb, line 12
def initialize(id = nil, parameters = nil, content = nil, content_path = nil )
  @id = id
  @parameters = parameters
  @content = content
  @content_path = content_path
end