VocalMon.java
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. import java.io.*;
  2. import java.net.*;
  3. import java.util.*;
  4. public class VocalMon {
  5. public static void main(String[] args) throws IOException {
  6. usage(args);
  7. HeartbeatReceiver mcReceiver = new HeartbeatReceiver( args[0], Integer.parseInt(args[1]) );
  8. VocalServer   vocal = new VocalServer();
  9. HouseKeeping lookForServerStats = new HouseKeeping ( HeartbeatSender.heartbeatInterval, vocal);
  10. mcReceiver.listeningForHeartbeat(vocal);
  11. mcReceiver = null;
  12.     }
  13.     private static void usage(String[] args) {
  14. if (args.length != 4) {
  15. System.out.println ("nnnUsage: VocalMon " +   " MulticastAddress MulticastPort HeartbeatInterval(ms) MaxMissedHeartbeatnn" );
  16. System.exit( -1 );
  17. }
  18. else {
  19. System.out.println ("nnnMulticastAddress = " + args[0] + ":" + args[1] + ", HeartbeatInterval(ms) = " + args[2] + ", MaxMissedHeartbeat = " + args[3] + ".nn" );
  20. HeartbeatSender.heartbeatInterval = Long.parseLong( args[2] );
  21. HeartbeatSender.maxMissedHeartbeat = Integer.parseInt( args[3] );
  22. }
  23. }
  24. }