class Concurrent::Async::AsyncDelegator

def initialize(delegate, executor, mutex)

Parameters:
  • mutex (Mutex) -- the mutex lock to use when delegating method calls
  • delegate (Object) -- the object to wrap and delegate method calls to
def initialize(delegate, executor, mutex)
  @delegate = delegate
  @executor = executor
  @mutex = mutex
end