gecco.communication.messages
Class TimeUpdateMessage

java.lang.Object
  |
  +--gecco.communication.messages.Message
        |
        +--gecco.communication.messages.TimeUpdateMessage

public class TimeUpdateMessage
extends Message

This message is put in the send queue on the server part of the communication when the clients are sent a time update.

Author:
Karl Hasselström

Field Summary
 String time
          The time string.
 
Constructor Summary
TimeUpdateMessage(String time)
          Constructs a new time update message.
 
Method Summary
static Message read(DataInput in)
          This factory method reads a message of this type without an initial ID from the input stream, and returns a Message object.
 void write(DataOutput out)
          This method writes the message to the given DataOutput.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

time

public String time
The time string.
Constructor Detail

TimeUpdateMessage

public TimeUpdateMessage(String time)
Constructs a new time update message.
Parameters:
time - A String representing the current time.
Method Detail

write

public void write(DataOutput out)
           throws IOException
This method writes the message to the given DataOutput.
Overrides:
write in class Message
Parameters:
out - The output stream.
Throws:
IOException - In case something goes wrong.

read

public static Message read(DataInput in)
                    throws IOException
This factory method reads a message of this type without an initial ID from the input stream, and returns a Message object.
Parameters:
in - The input stream.
Returns:
An instance of Message.