Sha256: af8564fb486bcef251794b32bede73dc5014d675c267bcd791213c40c5185261
Contents?: true
Size: 372 Bytes
Versions: 61
Compression:
Stored size: 372 Bytes
Contents
# this represents a FileSystem queue channel (or basically a folder) module DispatchRider module NotificationServices class FileSystem::Channel def initialize(path) @file_system_queue = DispatchRider::QueueServices::FileSystem::Queue.new(path) end def publish(message) @file_system_queue.add(message) end end end end
Version data entries
61 entries across 61 versions & 1 rubygems