class MatrixSdk::Event

Attributes

handled[W]

Public Class Methods

new(sender) click to toggle source
# File lib/matrix_sdk/util/events.rb, line 41
def initialize(sender)
  @sender = sender
  @handled = false
end

Public Instance Methods

handled?() click to toggle source
# File lib/matrix_sdk/util/events.rb, line 46
def handled?
  @handled
end
matches?(_filter) click to toggle source
# File lib/matrix_sdk/util/events.rb, line 50
def matches?(_filter)
  true
end