Class: Aws::Sqs::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/sqs/sqs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(queue, id = nil, rh = nil, body = nil, visibility = nil) ⇒ Message

Returns a new instance of Message.



270
271
272
273
274
275
276
277
278
279
280
# File 'lib/sqs/sqs.rb', line 270

def initialize(queue, id=nil, rh = nil, body=nil, visibility=nil)
  @queue = queue
  @id = id
  @receipt_handle = rh
  @body = body
  @visibility = visibility
  @sent_at = nil
  @received_at = nil
  @send_checksum = nil
  @receive_checksum = nil
end

Instance Attribute Details

#bodyObject (readonly)

Returns the value of attribute body.



267
268
269
# File 'lib/sqs/sqs.rb', line 267

def body
  @body
end

#idObject (readonly)

Returns the value of attribute id.



267
268
269
# File 'lib/sqs/sqs.rb', line 267

def id
  @id
end

#queueObject (readonly)

Returns the value of attribute queue.



267
268
269
# File 'lib/sqs/sqs.rb', line 267

def queue
  @queue
end

#receipt_handleObject (readonly)

Returns the value of attribute receipt_handle.



267
268
269
# File 'lib/sqs/sqs.rb', line 267

def receipt_handle
  @receipt_handle
end

#receive_checksumObject

Returns the value of attribute receive_checksum.



268
269
270
# File 'lib/sqs/sqs.rb', line 268

def receive_checksum
  @receive_checksum
end

#received_atObject

Returns the value of attribute received_at.



268
269
270
# File 'lib/sqs/sqs.rb', line 268

def received_at
  @received_at
end

#send_checksumObject

Returns the value of attribute send_checksum.



268
269
270
# File 'lib/sqs/sqs.rb', line 268

def send_checksum
  @send_checksum
end

#sent_atObject

Returns the value of attribute sent_at.



268
269
270
# File 'lib/sqs/sqs.rb', line 268

def sent_at
  @sent_at
end

#visibilityObject

Returns the value of attribute visibility.



267
268
269
# File 'lib/sqs/sqs.rb', line 267

def visibility
  @visibility
end

Instance Method Details

#deleteObject

Removes message from queue. Returns true.



289
290
291
# File 'lib/sqs/sqs.rb', line 289

def delete
  @queue.sqs.interface.delete_message(@queue.url, @receipt_handle) if @receipt_handle
end

#to_sObject

Returns Message instance body.



283
284
285
# File 'lib/sqs/sqs.rb', line 283

def to_s
  @body
end