class ActiveSupport::Notifications::Fanout::Subscribers::Evented

def initialize(pattern, delegate)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (String pattern, (ActionView::LogSubscriber | ActiveJob::LogSubscriber) delegate) -> void

This signature was generated using 11 samples from 1 application.

def initialize(pattern, delegate)
  @pattern = Matcher.wrap(pattern)
  @delegate = delegate
  @can_publish = delegate.respond_to?(:publish)
  @can_publish_event = delegate.respond_to?(:publish_event)
end