diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-20 10:14:21 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-20 10:14:21 +0200 |
commit | 50a8b9ea0c4a819073b46449dee8fc839b837ae5 (patch) | |
tree | a1effc887ebb0e824959b114dd0ed67e788d0507 /bindings/java/org | |
parent | edecf75b611cf0e6b1c2658846cff013434edad4 (diff) |
'flags' parameter added to zmq_init
Diffstat (limited to 'bindings/java/org')
-rw-r--r-- | bindings/java/org/zmq/Context.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bindings/java/org/zmq/Context.java b/bindings/java/org/zmq/Context.java index c63ef60..408c6b0 100644 --- a/bindings/java/org/zmq/Context.java +++ b/bindings/java/org/zmq/Context.java @@ -24,14 +24,16 @@ public class Context { System.loadLibrary("jzmq"); } + public static final int POLL = 1; + /** * Class constructor. * * @param appThreads maximum number of application threads. * @param ioThreads size of the threads pool to handle I/O operations. */ - public Context (int appThreads, int ioThreads) { - construct (appThreads, ioThreads); + public Context (int appThreads, int ioThreads, int flags) { + construct (appThreads, ioThreads, flags); } /** @@ -40,7 +42,7 @@ public class Context { public native long createSocket (int type); /** Initialize the JNI interface */ - protected native void construct (int appThreads, int ioThreads); + protected native void construct (int appThreads, int ioThreads, int flags); /** Free resources used by JNI driver. */ protected native void finalize (); |