C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/net/AddressProviderFactory.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_ADDRESS_PROVIDER_FACTORY_HPP
00008 #define COH_ADDRESS_PROVIDER_FACTORY_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/net/AddressProvider.hpp"
00013 
00014 COH_OPEN_NAMESPACE2(coherence,net)
00015 
00016 /**
00017 * A factory for AddressProvider objects.
00018 *
00019 * @author wl  2012.04.04
00020 * @since Coherence 12.1.2
00021 */
00022 class COH_EXPORT AddressProviderFactory
00023     : public interface_spec<AddressProviderFactory >
00024     {
00025     public:
00026         /**
00027         * Create a new AddressProvider.
00028         *
00029         * @param vLoader  the optional ClassLoader with which to configure the
00030         *                 new AddressProvider.
00031         * @return an instance of the corresponding AddressProvider
00032         *         implementation.
00033         *
00034         */
00035         virtual AddressProvider::Handle createAddressProvider(ClassLoader::View vLoader = NULL) = 0;
00036     };
00037 
00038 COH_CLOSE_NAMESPACE2
00039 
00040 #endif // COH_ADDRESS_PROVIDER_FACTORY_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.