Hi Igor, 1 mar 2014 kl. 12:58 skrev Igor Racic <[email protected]>:
> Hi, > > I am trying to test if Akka Remoting can run in environment where java.nio is > not supported (database). This is a rather surprising use-case, sounds interesting! > Is it possible to setup Akka remoting (with or without Netty) so that it uses > Java Sockets or any other non native approach ? Akka’s network support (both remoting and Akka IO) are built on NIO for performance and scalability reasons, but you can in principle write your own RemoteTransport that uses two threads per remote connection and relies on InputStream and OutputStream. Regards, Roland > (Version used is 2.2.1 but can switch if needed) > > Thank you and regards, > Igor > > > > -- > >>>>>>>>>> Read the docs: http://akka.io/docs/ > >>>>>>>>>> Check the FAQ: http://akka.io/faq/ > >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user > --- > You received this message because you are subscribed to the Google Groups > "Akka User List" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/akka-user. > For more options, visit https://groups.google.com/groups/opt_out. Dr. Roland Kuhn Akka Tech Lead Typesafe – Reactive apps on the JVM. twitter: @rolandkuhn -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: http://akka.io/faq/ >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/groups/opt_out.
