Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
comidan authored Jul 23, 2018
1 parent f50ebad commit 365268e
Showing 1 changed file with 81 additions and 0 deletions.
81 changes: 81 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# HeartbeatProtocol
Heartbeat protocol written in Java, working over UDP


### Heartbeat Protocol Description
The heartbeat protocol is structured on a continuous notification of a UDP datagram with a delay of 1000 milliseconds. The payload field contains the identifier ID from the client that can consist of a string such as the MAC address of the network cards in current use by the ping source or an identifier such as a username.
The server will listen to the various ping sorting them according to the identifier and managing the various states that they will define themselves.
Whenever the server will notice that after a delay of 3000 milliseconds has not received any ping from the client will notify through an event the user of this protocol of the
probable loss of connection advising to limit or stop the exchange of data through any other connection-dependent protocol such as TCP.
If within 5,000 milliseconds you will receive with this identifier the client will be connected again, meaning that it is possible to restore the data communication channel.
Otherwise the client will be considered completely offline.
All this will be notified as mentioned above through an event management as shown below:



@Override
public void onHeartbeat(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Received heartbeat from " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onDeath(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> event.getSource() + " died after " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onLossCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Communication lost of " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onReacquiredCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Communication reacquired of " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onAcquiredCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> event.getSource() + " connected at " + event.getBeatTimeStamp());
}
The sample code above shows the capture of various events on the states of a client, it will then be the task of those who implement the listener the decision on what to do when capturing a certain type of event as below :

public class ServerStart implements HeartbeatListener {
private static final ServerStart thisInstance = new ServerStart();

public static void main(String[] args) {
HeartbeatProtocolManager heartbeatProtocolManager = new HeartbeatProtocolManager(thisInstance);
heartbeatProtocolManager.addHost("Test", 43210); //identifier, port
heartbeatProtocolManager.addHost("Test1", 43211);
}

@Override
public void onHeartbeat(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Received heartbeat from " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onDeath(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> event.getSource() + " died after " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onLossCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Communication lost of " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onReacquiredCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> "Communication reacquired of " + event.getSource() + " in " + event.getTimeFromPreviousBeat() + " at " + event.getBeatTimeStamp());
}

@Override
public void onAcquiredCommunication(HeartbeatEvent event) {
LOGGER.log(Level.INFO, () -> event.getSource() + " connected at " + event.getBeatTimeStamp());
}
}


The event generated in addition to containing the payload will also contain the delay passed with respect to the previous one with its own payload identifier and the timestamp of the corrent reception of the ping.

The use of this protocol will allow a better management of the status of the connections between client and serer and a greater control of the possible errors.

0 comments on commit 365268e

Please sign in to comment.