I'm using JCC to create a Python wrapper for a Java library and I need to override a method from a Java class inside the Python script. Is it possible? How can you do that if it is possible?
Asked
Active
Viewed 159 times
1 Answers
0
you could create a proxy class in Python that calls the Java class. Then on the proxy class you can override whatever you need.

Marwan Alsabbagh
- 25,364
- 9
- 55
- 65
-
I can't use this solution because it is called on threaded code, so it is not just about execution, but execution and waiting for the results for a certain time. – dagilpe Oct 24 '12 at 13:09