keep alive message shoud not be a interface
This commit is contained in:
parent
84383f666c
commit
a289d96d6a
2 changed files with 16 additions and 12 deletions
16
src/ei/engine/network/message/KeepAliveMessage.java
Normal file
16
src/ei/engine/network/message/KeepAliveMessage.java
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
package ei.engine.network.message;
|
||||
|
||||
import ei.engine.network.message.type.SystemMessage;
|
||||
|
||||
/**
|
||||
* Tells the destination that the
|
||||
* source is still online
|
||||
*
|
||||
* @author Ziver
|
||||
*
|
||||
*/
|
||||
public class KeepAliveMessage extends Message implements SystemMessage{
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
package ei.engine.network.message.type;
|
||||
|
||||
/**
|
||||
* Tells the destination that the
|
||||
* source is still online
|
||||
*
|
||||
* @author Ziver
|
||||
*
|
||||
*/
|
||||
public interface KeepAliveMessage {
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue