Skip to main content

Pentaho+ documentation is moving!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

IEventRegistrationHandle

pentaho.lang. IEventRegistrationHandle

The IEventRegistrationHandle interface represents an event registration and provides a means to explicitly unregister from the event.

This interface extends IDisposable to provide the remove as an alias for dispose. This alias supports the dojo/on API.

Source: doc-js/pentaho/lang/IEventRegistrationHandle.jsdoc, line 16

Extends

Methods

Name Description
dispose()

Disposes of an object if it hasn't been disposed of yet.

remove()

Removes the event registration, if it hasn't been removed yet.

Methods Details

dispose()

Disposes of an object if it hasn't been disposed of yet.

This method should not throw an error in case the resource has already been disposed of.

Source: doc-js/pentaho/lang/IDisposable.jsdoc, line 24

Inherited From: pentaho.lang.IDisposable#dispose

remove()

Removes the event registration, if it hasn't been removed yet.

This method is an alias for dispose.

Source: doc-js/pentaho/lang/IEventRegistrationHandle.jsdoc, line 30

See also: pentaho.lang.IDisposable#dispose