[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Add an event type with the given alias and Java fully-qualified class name. If the alias already exists with the same class name, returns the existing EventType instance. If the alias already exists with different class name, throws an exception. If the alias does not already exists, adds the alias and constructs a new net.esper.events.BeanEventType.

Namespace: net.esper.events
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Function AddBeanType ( _
	eventTypeAlias As String, _
	fullyQualClassName As String _
) As EventType
C#
EventType AddBeanType (
	string eventTypeAlias,
	string fullyQualClassName
)
Visual C++
EventType^ AddBeanType (
	String^ eventTypeAlias, 
	String^ fullyQualClassName
)

Parameters

eventTypeAlias
System.String
is the alias name for the event type
fullyQualClassName
System.String
is the fully qualified class name

Return Value

event type is the type added

See Also