From 7a5db6041f4f11ed502fa7446da900509dedb00f Mon Sep 17 00:00:00 2001 From: malosek Date: Wed, 16 Sep 2009 12:22:36 +0200 Subject: added newly added socket options to all language bindings, P2P model changed to PUB/SUB for throughput tests --- perf/java/remote_thr.java | 60 +++++++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 28 deletions(-) (limited to 'perf/java/remote_thr.java') diff --git a/perf/java/remote_thr.java b/perf/java/remote_thr.java index f505600..9182a8f 100644 --- a/perf/java/remote_thr.java +++ b/perf/java/remote_thr.java @@ -21,33 +21,37 @@ import org.zmq.*; class remote_thr { - public static void main (String [] args) - { - if (args.length != 3) { - System.out.println ("usage: remote_thr " + - " "); - return; - } - - // Parse the command line arguments. - String connectTo = args [0]; - int messageSize = Integer.parseInt (args [1]); - int messageCount = Integer.parseInt (args [2]); - - org.zmq.Context ctx = new org.zmq.Context (1, 1); - - org.zmq.Socket s = new org.zmq.Socket (ctx, org.zmq.Socket.P2P); - s.connect (connectTo); - - byte msg [] = new byte [messageSize]; - for (int i = 0; i != messageCount; i++) - s.send (msg, 0); - - try { - Thread.sleep (10000); - } - catch (InterruptedException e) { - e.printStackTrace (); - } + public static void main (String [] args) + { + if (args.length != 3) { + System.out.println ("usage: remote_thr " + + " "); + return; + } + + // Parse the command line arguments. + String connectTo = args [0]; + int messageSize = Integer.parseInt (args [1]); + int messageCount = Integer.parseInt (args [2]); + + org.zmq.Context ctx = new org.zmq.Context (1, 1); + + org.zmq.Socket s = new org.zmq.Socket (ctx, org.zmq.Socket.PUB); + + // Add your socket options here. + // For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. + + s.connect (connectTo); + + byte msg [] = new byte [messageSize]; + for (int i = 0; i != messageCount; i++) + s.send (msg, 0); + + try { + Thread.sleep (10000); + } + catch (InterruptedException e) { + e.printStackTrace (); + } } } -- cgit v1.2.3