-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
413 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
require 'eventception/event' | ||
require 'eventception/listener_handler' | ||
require 'eventception/dispatcher' | ||
require 'eventception/immutable_dispatcher' | ||
require 'eventception/base_subscriber' | ||
require 'eventception/version' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# @author Daniel Gomes <danielcesargomes@gmail.com> | ||
module Eventception | ||
class ImmutableDispatcher | ||
private | ||
|
||
attr_reader :dispatcher | ||
|
||
public | ||
|
||
# Creates an unmodifiable proxy for an event dispatcher. | ||
# | ||
# == Parameters: | ||
# listeners:: | ||
# Array of event listeners | ||
# subscribers:: | ||
# Array of event subscribers | ||
# | ||
# == Returns: | ||
# Nil | ||
# | ||
def initialize(listeners: [], subscribers: []) | ||
@dispatcher = Eventception::Dispatcher.new | ||
|
||
listeners.each do |listener| | ||
dispatcher.add_listener( | ||
event_name: listener.fetch(:event_name), | ||
listener: listener.fetch(:listener), | ||
listener_method: listener.fetch(:listener_method), | ||
priority: listener.fetch(:priority, 0), | ||
) | ||
end | ||
|
||
subscribers.each { |subscriber| dispatcher.add_subscriber(subscriber: subscriber) } | ||
|
||
nil | ||
end | ||
|
||
# Dispatches an event to all registered listeners. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event to dispatch. The name of | ||
# the event is the name of the method that is | ||
# invoked on listeners. | ||
# event:: | ||
# The event to pass to the event handlers/listeners | ||
# If not supplied, an empty Event instance is created. | ||
# | ||
# == Returns: | ||
# The Event. | ||
# | ||
def dispatch(event_name:, event: Eventception::Event.new) | ||
dispatcher.dispatch(event_name: event_name, event: event) | ||
|
||
event | ||
end | ||
|
||
# Gets all listeners sorted by descending priority. | ||
# | ||
# == Returns: | ||
# All event listeners sorted by event_name and descending priority. | ||
# | ||
def listeners | ||
dispatcher.listeners | ||
end | ||
|
||
# Checks whether are any registered listeners. | ||
# | ||
# == Returns: | ||
# Boolean | ||
# | ||
def listeners? | ||
dispatcher.listeners? | ||
end | ||
|
||
# Gets all listeners for the specific event sorted by descending priority. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event | ||
# | ||
# == Returns: | ||
# The event listeners for the specific event sorted by descending priority. | ||
# | ||
def listeners_for(event_name:) | ||
dispatcher.listeners_for(event_name: event_name) | ||
end | ||
|
||
# Checks whether are any registered listeners for the specific event. | ||
# | ||
# == Parameters: | ||
# event_name:: | ||
# The name of the event | ||
# | ||
# == Returns: | ||
# Boolean | ||
# | ||
def listeners_for?(event_name:) | ||
dispatcher.listeners_for?(event_name: event_name) | ||
end | ||
end | ||
end |
Oops, something went wrong.