Main Content

notify

Class: handle

Notify listeners that event is occurring

Syntax

notify(H,EventName)
notify(H,EventName,data)

Description

notify(H,EventName) notifies listeners that the named event is taking place on the handle objects in H.

notify(H,EventName,data) includes user-defined event data.

Input Arguments

expand all

Event source, specified as a handle array. All of the objects in H must define the named event.

Name of event, specified as case-sensitive, quoted text that is defined by the class of H.

User-defined event data, specified as an object that is a subclass of the event.EventData class. For information on defining event data, see Define Event-Specific Data.

Note

Listener callbacks should not reuse the same event data object in subsequent calls to notify. Always create a new event data object to pass to notify.

Attributes

Accesspublic

To learn about attributes of methods, see Method Attributes.

Extended Capabilities

Thread-Based Environment
Run code in the background using MATLAB® backgroundPool or accelerate code with Parallel Computing Toolbox™ ThreadPool.

Version History

Introduced in R2008a