nimrod-ipc

simple to use rpc and pubsub library for java built on to of zeromq.

Cost / License

  • Free
  • Open Source

Platforms

  • Mac
  • Windows
  • Linux
  • Android
  • Java Mobile
-
No reviews
0likes
0comments
0news articles

Features

Suggest and vote on features
  1.  RPC

 Tags

  • Java
  • ipc
  • rmi
  • zeromq
  • pubsub

nimrod-ipc News & Activities

Highlights All activities

Recent activities

No activities found.

nimrod-ipc information

  • Developed by

    Unknown
  • Licensing

    Open Source and Free product.
  • Alternatives

    1 alternatives listed
  • Supported Languages

    • English

Popular alternatives

View all
nimrod-ipc was added to AlternativeTo by andycrutchlow on and this page was last updated .
No comments or reviews, maybe you want to be first?
Post comment/review

What is nimrod-ipc?

A simple API for interprocess communication for java using ZeroMQ.

ZeroMQ supports many advanced messaging scenarios. This API covers two major use-cases which I find useful when developing enterprise/distributed applications whilst requiring minimal configuration and code to use these features :

  1. Remote method invocation : A thread in running in one jvm (client process) can call any exposed method in any exposed class running in another jvm (server process) passing to it any required arguments for the target method.

  2. Publish/Subscribe : From a publisher instance any thread can simply and directly publish on any subject a message payload containing any serializable object. A subscriber instance can dynamically register (or unregister) any number of callbacks on any subject and directly receive the deserialzed object.