Created
August 26, 2013 08:03
-
-
Save mojaie/6339046 to your computer and use it in GitHub Desktop.
Sample of Py4J GatawayServer jarfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import py4j.GatewayServer; | |
public class TestEntryPoint { | |
public String getString() { | |
return "hogehoge"; | |
} | |
public static void main(String[] args) { | |
GatewayServer gatewayServer = new GatewayServer(new TestEntryPoint()); | |
gatewayServer.start(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment