Uses of Class
net.jolsrv2.data.Message

Packages that use Message
net.jolsrv2   
net.jolsrv2.data   
 

Uses of Message in net.jolsrv2
 

Methods in net.jolsrv2 that return types with arguments of type Message
 java.util.ArrayList<Message> Interface.takeFromOutgoingMessages()
          Takes one or more messages from the outgoing queue in a FIFO manner
 

Methods in net.jolsrv2 with parameters of type Message
 void Node.forwardMessage(java.net.InetAddress sourceAddress, Message message)
          The method evaluates if the incoming message should be forwarded, and acts accordingly.
 void Interface.offerToOutgoingMessages(Message message)
          Puts a new message in the outgoing messages queue.
 

Uses of Message in net.jolsrv2.data
 

Subclasses of Message in net.jolsrv2.data
 class ParsedPacket
          The class saves the parsed packet as an ArrayList of Messages along with the sending IP address.
 

Methods in net.jolsrv2.data that return types with arguments of type Message
 java.util.ArrayList<Message> ParsedPacket.getMessages()
          Returns the messages
 

Constructor parameters in net.jolsrv2.data with type arguments of type Message
Packet(java.util.ArrayList<Message> messages)
          Constructor
ParsedPacket(java.util.ArrayList<Message> messages, java.net.InetAddress sendingAddress)
          Constructor