From 7c8f3ade69b1e50bb27ac19a8c1ddb515fcc33c8 Mon Sep 17 00:00:00 2001 From: Roland Date: Tue, 28 May 2013 13:02:03 +0200 Subject: [PATCH] add supported zeromq version information in docs --- akka-docs/rst/java/zeromq.rst | 4 ++++ akka-docs/rst/scala/zeromq.rst | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/akka-docs/rst/java/zeromq.rst b/akka-docs/rst/java/zeromq.rst index 1f7e0ec4a6..e026e7bbe4 100644 --- a/akka-docs/rst/java/zeromq.rst +++ b/akka-docs/rst/java/zeromq.rst @@ -13,6 +13,10 @@ ZeroMQ is very opinionated when it comes to multi-threading so configuration opt The ZeroMQ module for Akka is written against an API introduced in JZMQ, which uses JNI to interact with the native ZeroMQ library. Instead of using JZMQ, the module uses ZeroMQ binding for Scala that uses the native ZeroMQ library through JNA. In other words, the only native library that this module requires is the native ZeroMQ library. The benefit of the scala library is that you don't need to compile and manage native dependencies at the cost of some runtime performance. The scala-bindings are compatible with the JNI bindings so they are a drop-in replacement, in case you really need to get that extra bit of performance out. +.. info:: + + The currently used version of ``zeromq-scala-bindings`` is only compatible with zeromq 2; zeromq 3 is not supported. + Connection ========== diff --git a/akka-docs/rst/scala/zeromq.rst b/akka-docs/rst/scala/zeromq.rst index f5008a7c4b..2984f26b85 100644 --- a/akka-docs/rst/scala/zeromq.rst +++ b/akka-docs/rst/scala/zeromq.rst @@ -13,6 +13,10 @@ ZeroMQ is very opinionated when it comes to multi-threading so configuration opt The ZeroMQ module for Akka is written against an API introduced in JZMQ, which uses JNI to interact with the native ZeroMQ library. Instead of using JZMQ, the module uses ZeroMQ binding for Scala that uses the native ZeroMQ library through JNA. In other words, the only native library that this module requires is the native ZeroMQ library. The benefit of the scala library is that you don't need to compile and manage native dependencies at the cost of some runtime performance. The scala-bindings are compatible with the JNI bindings so they are a drop-in replacement, in case you really need to get that extra bit of performance out. +.. info:: + + The currently used version of ``zeromq-scala-bindings`` is only compatible with zeromq 2; zeromq 3 is not supported. + Connection ==========