 | ConfigurationCommonAddEventTypeAutoName Method |
Adds a namespace of a package that event classes reside in.
This setting allows an application to place all it's events into one or more namespaces
and then declare these packages via this method. The runtime
attempts to resolve an event type name to a type residing in each declared package.
For example, in the statement "select * from MyEvent" the runtime attempts to load class "namespace.MyEvent"
and if successful, uses that class as the event type.
Namespace:
com.espertech.esper.common.client.configuration.common
Assembly:
NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntaxpublic void AddEventTypeAutoName(
string namespace
)
Parameters
- namespace
- Type: SystemString
is the fully-qualified namespace of the namespace that event classes reside in
See Also