Interface InfiniteObjectInterface

The InfiniteObjectInterface is the base class of most interfaces.

It merely defines a way to get rid of an interface, and get information about the type of the given interface.


Main

interface InfiniteObjectInterface {
    dispose(): void;
    getInfiniteObjectType(): InfiniteObjectType;
    isDisposed(): boolean;
}

Hierarchy (view full)

Methods

  • Tells if this object has been gotten rid off.

    Returns boolean

    true if dispose has been called on this object.