Sha256: f2217f5c49f586090a6cb1f622d03b5773c9ec8315e959f68ea8dc6094ae213f

Contents?: true

Size: 358 Bytes

Versions: 1

Compression:

Stored size: 358 Bytes

Contents

# frozen_string_literal: true

# This is abstraction around a notifier service for FileSystem based queue services

module DispatchRider
  module NotificationServices
    class FileSystem::Notifier
      def initialize(options)
        # nothing to do here
      end

      def channel(path)
        FileSystem::Channel.new(path)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dispatch-rider-2.2.0 lib/dispatch-rider/notification_services/file_system/notifier.rb