Package pl.icedev.rmi

Examples of pl.icedev.rmi.RMIClient$RMIProxy


                    e.printStackTrace();
                }
            }
        }).start();

        RMIClient rmi = new RMIClient("127.0.0.1", 2888);
        System.out.println("Connection to rmi");
        AwesomeService service = rmi.requestInterface(AwesomeService.class);

        String what = service.serve("Something");

        System.out.println("client got: " + what);
        String wut = service.serves(new String[]{"a", "b", "c", "d"});
View Full Code Here

TOP

Related Classes of pl.icedev.rmi.RMIClient$RMIProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.