.. java:import:: java.util.logging Logger .. java:import:: rsb InitializeException .. java:import:: rsb LocalServerCreateArgs .. java:import:: rsb ParticipantCreateArgs .. java:import:: rsb RSBException .. java:import:: rsb Scope LocalServer =========== .. java:package:: rsb.patterns :noindex: .. java:type:: public class LocalServer extends Server Objects of this class associate a collection of method objects which are implemented by callback functions with a scope under which these methods are exposed for remote clients. :author: jmoringe Constructors ------------ LocalServer ^^^^^^^^^^^ .. java:constructor:: public LocalServer(LocalServerCreateArgs args) :outertype: LocalServer Create a new LocalServer object that exposes its methods under the provided scope. :param args: Arguments used to create the local server. the scope specified the common super-scope under which the methods of the newly created server should be provided. Methods ------- addMethod ^^^^^^^^^ .. java:method:: public void addMethod(String name, Callback callback) throws RSBException :outertype: LocalServer Adds a new method to the server which can be called via \ :java:ref:`RemoteServer`\ instances. :param name: name of the method :param callback: callback implementing the functionality of the method :throws RSBException: error initializing the method :throws IllegalArgumentException: a method with the given name already exists. getDataType ^^^^^^^^^^^ .. java:method:: @Override public Class getDataType() :outertype: LocalServer getKind ^^^^^^^ .. java:method:: @Override public String getKind() :outertype: LocalServer waitForShutdown ^^^^^^^^^^^^^^^ .. java:method:: public void waitForShutdown() throws InterruptedException :outertype: LocalServer After calling \ :java:ref:`deactivate()`\ this methods waits until the server terminated completely. :throws InterruptedException: interrupted while waiting for the shutdown