123456789_123456789_123456789_123456789_123456789_

Exception: Concurrent::Agent::Error

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, StandardError
Instance Chain:
self, StandardError
Inherits: StandardError
  • ::Object
Defined in: lib/concurrent-ruby/concurrent/agent.rb

Overview

Raised during action processing or any other time in an Agent’s lifecycle.

Class Method Summary

Constructor Details

.new(message = nil) ⇒ Error

[ GitHub ]

  
# File 'lib/concurrent-ruby/concurrent/agent.rb', line 168

def initialize(message = nil)
  message ||= 'agent must be restarted before jobs can post'
  super(message)
end