Può qualcuno dare un semplice esempio di ritorno di chiamata RMI di Hello World? Ho cercato di indagare, ma sembra che non riesco a trovarne uno che capisco. Non capisco cosa sia / è un callback. Semplice rimborso della callback RMI
Questo è il mio attuale Hello World RMI se aiuta …
Interfaccia
Id = “f42ff4c38b”>
client
package example.hello; import java.rmi.registry.LocateRegistry; import java.rmi.registry.Registry; public class Client { private Client(){} public static void main(String args){ String host = (args.length < 1) ? null : args; try{ Registry registry = LocateRegistry.getRegistry(host); Hello stub = (Hello) registry.lookup("Hello"); String response = stub.sayHello(); System.out.println("response: " + response); } catch (Exception e) { System.err.println("Client exception: " + e.toString()); e.printStackTrace(); } } }
server