#include <coherence/net/ConfigurableAddressProviderFactory.hpp>
Inherits Object, AddressProviderFactory, and XmlConfigurable.
<!ELEMENT ... (socket-address+ | address-provider)>
<!ELEMENT address-provider
(class-name | (class-factory-name, method-name), init-params?>
<!ELEMENT socket-address (address, port)>
Public Types | ||||
| typedef spec::Handle | Handle | |||
| ConfigurableAddressProviderFactory Handle definition. | ||||
| typedef spec::View | View | |||
| ConfigurableAddressProviderFactory View definition. | ||||
| typedef spec::Holder | Holder | |||
| ConfigurableAddressProviderFactory Holder definition. | ||||
Public Member Functions | ||||
| virtual AddressProvider::Handle | createAddressProvider (ClassLoader::View vLoader=NULL) | |||
| Instantiate an AddressProvider configured according to the specified XML. | ||||
| virtual void | setConfig (XmlElement::View xml) | |||
| virtual XmlElement::View | getConfig () const | |||
| If this Object was previously configured using some XML configuration, the corresponding XmlElement is returned.
| ||||
| virtual void | toStream (std::ostream &out) const | |||
| Output a human-readable description of this Object to the given stream. coherence::lang::operator<<(std::ostream, Object::View) is defined and will call into the toStream method, to output Objects. If a managed String object is desired, the COH_TO_STRING macro can be used to build up a String from streamable contents.
Object::View vKey = ... Object::View vValue = ... std::cout << vKey << " = " << vValue << std::endl; String::Handle hs = COH_TO_STRING(vKey << " = " << vValue);
| ||||
Protected Member Functions | ||||
| ConfigurableAddressProviderFactory () | ||||
| Create a new ConfigurableAddressProviderFactory instance. | ||||
Protected Attributes | ||||
| FinalView< XmlElement > | f_vXmlConfig | |||
| XML configuration for this ConfigurableAddressProviderFactory. | ||||
| virtual AddressProvider::Handle createAddressProvider | ( | ClassLoader::View | vLoader = NULL |
) | [virtual] |
Instantiate an AddressProvider configured according to the specified XML.
The passed XML has to conform to the following format:
<!ELEMENT ... (socket-address+ | address-provider)>
<!ELEMENT address-provider
(class-name | (class-factory-name, method-name), init-params?>
<!ELEMENT socket-address (address, port)>
| vLoader | the optional ClassLoader with which to configure the new AddressProvider. |
Implements AddressProviderFactory.