All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.razorvine.pyro.package-info Maven / Gradle / Ivy

Go to download

This library allows your Java program to interface very easily with the Python world. It uses the Pyro protocol to call methods on remote objects. (See https://pyro5.readthedocs.io/). Pyrolite only implements part of the client side Pyro library, hence its name 'lite'... So if you don't need Pyro's full feature set, Pyrolite may be a good choice to connect java or .NET and python. Version 5.0 changes: support Pyro5 wire protocol. Dropped support of Pyro4 (stick to version 4.xx for that).

There is a newer version: 5.1
Show newest version
/**
 * Lightweight implementation of the client side 
 *  Pyro protocol.
 * 
 * {@link net.razorvine.pyro.Config} contains the (very few) static config items.
 * {@link net.razorvine.pyro.NameServerProxy} is a wrapper proxy to make it easier to talk to Pyro's name server.
 * {@link net.razorvine.pyro.PyroProxy} is the proxy class that is used to connect to remote Pyro objects and invoke methods on them.
 * {@link net.razorvine.pyro.PyroURI} is the URI class that is used to point at a specific object at a certain location.
 * 
 * This package makes heavy use of the {@link net.razorvine.pickle} package to be able to 
 * serialize and de-serialize object graphs, which is used in the Pyro communication protocol.
 * Note that Pyrolite only supports Pyro4.
 * 
 * @author Irmen de Jong ([email protected])
 * @version 4.12
 * @see net.razorvine.pickle
 */
package net.razorvine.pyro;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy