class Futex::CantLock

Exception that is raised when we can't lock because of some other process that is holding the lock now. There is an encapsulated start attribute of type Time, which points to the time when we started to try to acquire lock.

Attributes

start[R]

Public Class Methods

new(msg, start) click to toggle source
Calls superclass method
# File lib/futex.rb, line 64
def initialize(msg, start)
  @start = start
  super(msg)
end