Package util :: Module jvm :: Class JVM
[hide private]
[frames] | no frames]

Class JVM

source code

object --+
         |
        JVM

A wrapper for the Py4J server of Java Virtual Machine, so that java libraries can be accessed via Py4J.

Instance Methods [hide private]
 
__init__(self, java_classpath)
Star running java
source code
 
terminate(self)
Stop the Java Server
source code
 
__del__(self)
Stop the Java Server if the object stops existing
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]
  jvm
The object of the wrapped Java Virtual Machine process
  pid
The system process id of the Java Server
  socket_no
The socket that the Java Server is responding to Py4J requests
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, java_classpath)
(Constructor)

source code 

Star running java

Overrides: object.__init__