Package voxo.server.actions

Source Code of voxo.server.actions.SendHeartBeat

package voxo.server.actions;

import java.io.IOException;
import java.net.UnknownHostException;

import voxo.common.entities.Packet;
import voxo.common.enums.EnumPacket;
import voxo.server.services.NetworkService;

public class SendHeartBeat {
  public SendHeartBeat(String ip) throws UnknownHostException, IOException {
    NetworkService.sendPacket(ip, new Packet(EnumPacket.SERVER_HeartBeat, null));
  }

}
TOP

Related Classes of voxo.server.actions.SendHeartBeat

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.