Package org.nebulaframework.grid.cluster.registration

Examples of org.nebulaframework.grid.cluster.registration.RegistrationImpl


   * {@inheritDoc}
   */
  public Registration registerNode(final UUID nodeId, GridNodeProfile profile) {

    // Set the Registration Data
    RegistrationImpl reg = new RegistrationImpl();
    reg.setBrokerUrl(this.cluster.getClusterInfo().getServiceUrl());
    reg.setNodeId(nodeId);
    reg.setClusterId(this.cluster.getClusterId());

    GridNodeDelegate delegate = new GridNodeDelegate(nodeId, profile);
    delegate.setClassExporter(GridNodeClassExporterSupport
        .createServiceProxy(nodeId, connectionFactory));
    synchronized (this) {
View Full Code Here

TOP

Related Classes of org.nebulaframework.grid.cluster.registration.RegistrationImpl

Copyright © 2018 www.massapicom. 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.