Examples of requestInterface()


Examples of pl.icedev.rmi.RMIClient.requestInterface()

            }
        }).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
Copyright © 2018 www.massapi.com. 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.