Exception: Hatchet::DurableTaskEvictedError

Inherits:
Error
  • Object
show all
Defined in:
lib/hatchet/exceptions.rb

Overview

Raised inside a durable task thread when the eviction manager decides to evict that invocation (e.g. TTL expired, capacity pressure, worker shutdown).

Instance Method Summary collapse

Constructor Details

#initialize(message = "Durable task evicted") ⇒ DurableTaskEvictedError

Returns a new instance of DurableTaskEvictedError.



65
66
67
# File 'lib/hatchet/exceptions.rb', line 65

def initialize(message = "Durable task evicted")
  super
end