ServiceFactory Class
Namespace: Hazelcast.Core
Assembly: Hazelcast.Net.dll
Provides methods to create instances of services.
public static class ServiceFactory
Inherited Members
Remarks
The provided methods rely on the Activator.CreateInstance method to create the new instances and are not optimized for performance. It is fine to use them for e.g. creating singletons when the application starts, but they should not be used for intensive creation of objects.
Methods
CreateInstance(String, IDictionary<String, String>, Object[]) | Creates a new instance of type |
CreateInstance(Type, IDictionary<String, String>, Object[]) | Creates a new instance of type |
CreateInstance<T>(IDictionary<String, String>, Object[]) | Creates a new instance of type |
CreateInstance<T>(String, IDictionary<String, String>, Object[]) | Creates a new instance of type |
CreateInstance<T>(Type, IDictionary<String, String>, Object[]) | Creates a new instance of type |