|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Message | |
|---|---|
| net.jetrix | The main package for Jetrix. |
| net.jetrix.agent | |
| net.jetrix.clients | Contains concrete Client implementations. |
| net.jetrix.filter | Contains concrete MessageFilter implementations. |
| net.jetrix.listeners.interceptor | |
| net.jetrix.messages | Contains concrete Message implementations. |
| net.jetrix.messages.channel | Message implementations related to the game channel. |
| net.jetrix.messages.channel.specials | Message implementations related to special actions sent between players during the game. |
| net.jetrix.protocols | Contains concrete Protocol implementations. |
| Uses of Message in net.jetrix |
|---|
| Methods in net.jetrix that return Message | |
|---|---|
Message |
Protocol.getMessage(String message)
Parse the specified string and return the corresponding server message for this protocol. |
Message |
Client.receive()
Receive a message sent by the client. |
| Methods in net.jetrix with parameters of type Message | |
|---|---|
void |
Channel.process(Message m)
|
void |
Server.send(Message message)
Add a message to the server message queue. |
void |
Channel.send(Message message)
Add a message to the channel message queue. |
void |
Destination.send(Message message)
Send a message to this destination. |
void |
Client.send(Message message)
Send a message to the client. |
String |
Protocol.translate(Message m,
Locale locale)
Translate the specified message into a string that will be sent to a client using this protocol. |
| Uses of Message in net.jetrix.agent |
|---|
| Methods in net.jetrix.agent with parameters of type Message | |
|---|---|
void |
TetrinetAgent.onMessage(Message m)
Message pre-processing. |
void |
TetrinetAgent.receive(Message m)
|
void |
Agent.receive(Message message)
Receive a message sent by the server. |
void |
QueryAgent.receive(Message message)
|
void |
TetrinetAgent.send(Message message)
|
void |
Agent.send(Message message)
Send a message to the server. |
void |
QueryAgent.send(Message message)
|
| Uses of Message in net.jetrix.clients |
|---|
| Fields in net.jetrix.clients with type parameters of type Message | |
|---|---|
protected BlockingQueue<Message> |
TetrinetClient.queue
|
| Methods in net.jetrix.clients that return Message | |
|---|---|
Message |
TSpecClient.receive()
|
Message |
ConsoleClient.receive()
|
Message |
TetrinetClient.receive()
|
| Methods in net.jetrix.clients with parameters of type Message | |
|---|---|
void |
QueryClient.send(Message m)
|
void |
ConsoleClient.send(Message message)
|
void |
TetrinetClient.send(Message message)
|
void |
QueryClient.setFirstMessage(Message firstMessage)
Set the first command issued by this client. |
| Uses of Message in net.jetrix.filter |
|---|
| Methods in net.jetrix.filter with parameters of type Message | |
|---|---|
void |
GenericFilter.onMessage(Message m)
Message pre-processing. |
void |
GenericFilter.onMessage(Message m,
List<Message> out)
|
void |
AmplifierFilter.process(Message m,
List<Message> out)
|
void |
PingFilter.process(Message m,
List<Message> out)
|
void |
GenericFilter.process(Message m,
List<Message> out)
|
abstract void |
MessageFilter.process(Message m,
List<Message> out)
Process a message and outputs messages to the specified List. |
| Uses of Message in net.jetrix.listeners.interceptor |
|---|
| Methods in net.jetrix.listeners.interceptor with parameters of type Message | |
|---|---|
void |
SpeedCheckInterceptor.send(Message message)
|
abstract void |
InteractiveInterceptor.send(Message message)
Process a message received from the client. |
| Uses of Message in net.jetrix.messages |
|---|
| Subclasses of Message in net.jetrix.messages | |
|---|---|
class |
AddPlayerMessage
A message indicating a new client joined the server. |
class |
ClientInfoMessage
Information about the client (name & version). |
class |
DisconnectedMessage
A client disconnection message. |
class |
NoConnectingMessage
A connection denial message. |
class |
NoopMessage
No Operation message. |
class |
PlayerSwitchMessage
Message generated when the /move command is issued. |
class |
ShutdownMessage
|
class |
SpectatorListMessage
List of spectators in a channel. |
class |
WinlistMessage
The top teams and players of a winlist. |
| Uses of Message in net.jetrix.messages.channel |
|---|
| Subclasses of Message in net.jetrix.messages.channel | |
|---|---|
class |
ChannelMessage
A channel message. |
class |
CommandMessage
A /command. |
class |
EndGameMessage
|
class |
FieldMessage
A field change message. |
class |
GmsgMessage
An ingame chat message. |
class |
IngameMessage
|
class |
JoinMessage
A playerjoin message. |
class |
LeaveMessage
Message sent when a player or spectator leave a channel. |
class |
LevelMessage
A level change message. |
class |
NewGameMessage
A new game message. |
class |
PauseMessage
|
class |
PlayerLostMessage
|
class |
PlayerNumMessage
|
class |
PlayerWonMessage
|
class |
PlineActMessage
A party line action message. |
class |
PlineMessage
A party line message. |
class |
ResumeMessage
|
class |
SmsgMessage
A spectator message. |
class |
StartGameMessage
A start game message. |
class |
StopGameMessage
A stop game message. |
class |
TeamMessage
A team change message. |
class |
TextMessage
A generic internationalized text message. |
| Uses of Message in net.jetrix.messages.channel.specials |
|---|
| Subclasses of Message in net.jetrix.messages.channel.specials | |
|---|---|
class |
AddLineMessage
|
class |
BlockBombMessage
|
class |
BlockQuakeMessage
|
class |
ClearLineMessage
|
class |
ClearSpecialsMessage
|
class |
FourLinesAddedMessage
Message sent when 4 lines are cleared and 4 lines are added to all opponents. |
class |
GravityMessage
|
class |
LinesAddedMessage
Message sent when a player clears several lines and add lines to all opponents. |
class |
NukeFieldMessage
|
class |
OneLineAddedMessage
Message sent when 2 lines are cleared and 1 line is added to all opponents. |
class |
RandomClearMessage
A clear random blocks message. |
class |
SpecialMessage
A channel message for special blocks. |
class |
SwitchFieldsMessage
|
class |
TwoLinesAddedMessage
Message sent when 3 lines are cleared and 2 lines are added to all opponents. |
| Uses of Message in net.jetrix.protocols |
|---|
| Methods in net.jetrix.protocols that return Message | |
|---|---|
Message |
QueryProtocol.getMessage(String message)
|
Message |
ConsoleProtocol.getMessage(String line)
Parse the specified string and return the corresponding server message for this protocol. |
Message |
IRCProtocol.getMessage(String line)
Parse the specified string and return the corresponding server message for this protocol. |
Message |
TspecProtocol.getMessage(String line)
Parse the specified string and return the corresponding server message for this protocol. |
Message |
TetrinetProtocol.getMessage(String line)
Parse the specified string and return the corresponding server message for this protocol. |
| Methods in net.jetrix.protocols with parameters of type Message | |
|---|---|
String |
QueryProtocol.translate(Message m,
Locale locale)
|
String |
ConsoleProtocol.translate(Message m,
Locale locale)
Translate the specified message into a string that will be sent to a client using this protocol. |
String |
IRCProtocol.translate(Message m,
Locale locale)
Translate the specified message into a string that will be sent to a client using this protocol. |
String |
TspecProtocol.translate(Message m,
Locale locale)
Translate the specified message into a string that will be sent to a client using this protocol. |
String |
TetrinetProtocol.translate(Message m,
Locale locale)
Translate the specified message into a string that will be sent to a client using this protocol. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||