ListenerInvoker

Package: MachII.framework
Base Invoker component.

<!--- License: Copyright 2008 GreatBizTools, LLC Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Copyright: GreatBizTools, LLC Author: Ben Edwards (ben@ben-edwards.com) $Id: ListenerInvoker.cfc 625 2008-01-29 21:45:06Z peterfarrell $ Created version: 1.0.0 Created version: 1.5.0 Notes: --->

Method Summary
public ListenerInvoker init()

Initialization function called by the framework.

public void invokeListener(Event event, any listener, string method, [string resultKey=""])

Invokes the target Listener with the Event.

Method Detail
init

public ListenerInvoker init( )

Initialization function called by the framework.

Parameters:

Code:

	<cffunction name="init" access="public" returntype="ListenerInvoker" output="false"
		hint="Initialization function called by the framework.">
		<cfreturn this />
	</cffunction> 

invokeListener

public void invokeListener( Event event, any listener, string method, [string resultKey=""] )

Invokes the target Listener with the Event.

Parameters:
Event event
any listener
string method
[string resultKey=""]

Code:

	<cffunction name="invokeListener" access="public" returntype="void"
		hint="Invokes the target Listener with the Event.">
		<cfargument name="event" type="MachII.framework.Event" required="true"
			hint="The Event triggering the invocation." />
		<cfargument name="listener" required="true"
			hint="The Listener to invoke." />
		<cfargument name="method" type="string" required="true"
			hint="The name of the Listener's method to invoke." />
		<cfargument name="resultKey" type="string" required="false" default=""
			hint="The result key." />
		
		
	</cffunction>