Eclipse Remote Application Platform

org.eclipse.rap.rwt.remote
Interface Connection


public interface Connection

An instance of this interface represents a connection used to communicate with the client. Every UI session has exactly one connection which can be obtained by calling UISession.getConnection().

Note: The classes and interfaces in the package org.eclipse.rap.rwt.remote are still considered provisional. They are expected to evolve over the next releases, which may lead to slight changes. We make the package available to enable the development of custom components with the new API.

Since:
2.0
See Also:
UISession.getConnection()

Method Summary
 RemoteObject createRemoteObject(java.lang.String remoteType)
          Creates a new remote object on the client with the given remote type.
 

Method Detail

createRemoteObject

RemoteObject createRemoteObject(java.lang.String remoteType)
Creates a new remote object on the client with the given remote type. The type must be known by the client, and the client must be able to create an object of this type. The returned RemoteObject can be used to communicate with the remote object.

Parameters:
remoteType - the type of the remote object to be created, must not be null
Returns:
a representation of the remote object that has been created

Eclipse Remote Application Platform

Copyright (c) EclipseSource and others 2002, 2012. All rights reserved.