class Meshchat::Ui::Notifier::Base

This is the default notification implementation

Only use one notification and update continuously, so that the notification area / tray doesn't become flooded by this app

To write your own notifier, just override the show method in a subclass of this class

Public Class Methods

instance() click to toggle source
# File lib/meshchat/ui/notifier/base.rb, line 22
def instance
  @instance ||= new
end

Public Instance Methods

show(*args) click to toggle source
# File lib/meshchat/ui/notifier/base.rb, line 27
def show(*args)
  # by default don't notify
end