class Stomp::Error::ReadReceiptTimeoutException

Public Class Methods

new(timeout) click to toggle source
# File lib/stomp/errors.rb, line 307
def initialize(timeout)
  @timeout = timeout
end

Public Instance Methods

message() click to toggle source
# File lib/stomp/errors.rb, line 311
def message
  "Read receipt not received after #{@timeout} seconds"
end