Class: Minecraft::MessageQueue

Inherits:
HistoryQueue show all
Defined in:
lib/minecraft.rb

Defined Under Namespace

Classes: Message

Instance Method Summary collapse

Methods inherited from HistoryQueue

#flush, #history, #pop

Constructor Details

#initializeMessageQueue

Returns a new instance of MessageQueue.



72
73
74
# File 'lib/minecraft.rb', line 72

def initialize
	super
end

Instance Method Details

#err(msg) ⇒ Object



80
81
82
# File 'lib/minecraft.rb', line 80

def err(msg)
	push Message::Err.new(msg)
end

#error(msg) ⇒ Object



88
89
90
# File 'lib/minecraft.rb', line 88

def error(msg)
	push Message::InternalError.new(msg)
end

#log(msg) ⇒ Object



84
85
86
# File 'lib/minecraft.rb', line 84

def log(msg)
	push Message::Internal.new(msg)
end

#out(msg) ⇒ Object



76
77
78
# File 'lib/minecraft.rb', line 76

def out(msg)
	push Message::Out.new(msg)
end