All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zeroc.IceDiscovery.LocatorI Maven / Gradle / Ivy

//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

package com.zeroc.IceDiscovery;

import java.util.concurrent.CompletionStage;
import java.util.concurrent.CompletableFuture;

class LocatorI implements com.zeroc.Ice.Locator
{
    public LocatorI(LookupI lookup, com.zeroc.Ice.LocatorRegistryPrx registry)
    {
        _lookup = lookup;
        _registry = registry;
    }

    @Override
    public CompletionStage findObjectByIdAsync(com.zeroc.Ice.Identity id,
                                                                        com.zeroc.Ice.Current current)
    {
        CompletableFuture f = new CompletableFuture();
        _lookup.findObject(f, id);
        return f;
    }

    @Override
    public CompletionStage findAdapterByIdAsync(String adapterId,
                                                                         com.zeroc.Ice.Current current)
    {
        CompletableFuture f = new CompletableFuture();
        _lookup.findAdapter(f, adapterId);
        return f;
    }

    @Override
    public com.zeroc.Ice.LocatorRegistryPrx getRegistry(com.zeroc.Ice.Current current)
    {
        return _registry;
    }

    private final LookupI _lookup;
    private final com.zeroc.Ice.LocatorRegistryPrx _registry;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy