Sha256: f05ccab5241833da915e97b63d8a03f5fc12aa134c8ef6259c930d2edfe40812
Contents?: true
Size: 499 Bytes
Versions: 63
Compression:
Stored size: 499 Bytes
Contents
module Hydra #:nodoc: module Messages #:nodoc: module Master #:nodoc: # Message telling a worker to delegate a file to a runner class RunFile < Hydra::Messages::Worker::RunFile def handle(worker) #:nodoc: worker.delegate_file(self) end end # Message telling the worker to shut down. class Shutdown < Hydra::Messages::Worker::Shutdown def handle(worker) #:nodoc: worker.shutdown end end end end end
Version data entries
63 entries across 63 versions & 8 rubygems