Package org.eclipse.rap.rwt.remote
Interface RemoteObject
public interface RemoteObject
Instances of this interface represent an object on the client that is synchronized with an object
on the server. A RemoteObject is used to transfer changes to the remote object. To create a
remote object, use
Connection.createRemoteObject(String)
.- Since:
- 2.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
call
(String method, JsonObject parameters) Calls the method with the given name on the remote object.void
destroy()
Instructs the client to destroy the remote object.getId()
Returns the id that is used to synchronize this object with the client.void
Instructs the remote object to listen or to stop listening on the given type of events.void
Sets the specified property of the remote object to the given value.void
Sets the specified property of the remote object to the given value.void
Sets the specified property of the remote object to the given value.void
Sets the specified property of the remote object to the given value.void
Sets the specified property of the remote object to the given value.void
setHandler
(OperationHandler handler) Set a handler to process incoming operations from the remote object.
-
Method Details
-
getId
String getId()Returns the id that is used to synchronize this object with the client. This id is created by the framework and does not change over the lifetime of the object.- Since:
- 2.1
-
set
Sets the specified property of the remote object to the given value.- Parameters:
name
- the name of the property to setvalue
- the value to set
-
set
Sets the specified property of the remote object to the given value.- Parameters:
name
- the name of the property to setvalue
- the value to set
-
set
Sets the specified property of the remote object to the given value.- Parameters:
name
- the name of the property to setvalue
- the value to set
-
set
Sets the specified property of the remote object to the given value.- Parameters:
name
- the name of the property to setvalue
- the value to set
-
set
Sets the specified property of the remote object to the given value.- Parameters:
name
- the name of the property to setvalue
- the value to set, must not benull
- Since:
- 2.1
-
listen
Instructs the remote object to listen or to stop listening on the given type of events. When the client is listening, it must notify the server when an event of the given type occurs.- Parameters:
eventType
- the name of event type to listenlisten
- true to listen to this type of events, false otherwise
-
call
Calls the method with the given name on the remote object.- Parameters:
method
- the name of the method to callparameters
- the named parameters to pass to the method call- Since:
- 2.1
-
destroy
void destroy()Instructs the client to destroy the remote object. -
setHandler
Set a handler to process incoming operations from the remote object.- Parameters:
handler
- the handler that processes incoming operation
-