Home

class: TickerListener


Internal class for handling the priority sorting of ticker handlers.

Methods summary


Public methods
private static constructor(fn: function, context: function, priority: number, once: boolean): void
public match(fn: function, context: function): boolean
public emit(deltaTime: number): TickerListener
public connect(previous: TickerListener): void
public destroy(hard: boolean): TickerListener
public match(fn: function, context: function): boolean
public emit(deltaTime: number): TickerListener
public connect(previous: TickerListener): void
public destroy(hard: boolean): TickerListener

Properties


Name Type Attribute Description
fn function public

The handler function to execute.

context function public

The calling to execute.

priority number public

The current priority.

once boolean public

If this should only execute once.

next TickerListener public

The next item in chain.

previous TickerListener public

The previous item in chain.

_destroyed boolean private

true if this listener has been destroyed already.

fn function public

The handler function to execute.

context function public

The calling to execute.

priority number public

The current priority.

once boolean public

If this should only execute once.

next TickerListener public

The next item in chain.

previous TickerListener public

The previous item in chain.

_destroyed boolean private

true if this listener has been destroyed already.

Methods


constructor(fn: function, context: function, priority: number, once: boolean): void

Constructor

Params:

Name Type Attribute Description
fn

The listener function to be added for one update

context

The listener context

priority

The priority for emitting

once

If the handler should fire once

Returns:

void


match(fn: function, context: function): boolean

Simple compare function to figure out if a function and context match.

Params:

Name Type Attribute Description
fn

The listener function to be added for one update

context

The listener context

Returns:

boolean


emit(deltaTime: number): TickerListener

Emit by calling the current function.

Params:

Name Type Attribute Description
deltaTime

time since the last emit.

Returns:

TickerListener


connect(previous: TickerListener): void

Connect to the list.

Params:

Name Type Attribute Description
previous

Input node, previous listener

Returns:

void


destroy(hard: boolean): TickerListener

Destroy and don't use after this.

Params:

Name Type Attribute Description
hard

true to remove the next reference, this
is considered a hard destroy. Soft destroy maintains the next reference.

Returns:

TickerListener


match(fn: function, context: function): boolean

Simple compare function to figure out if a function and context match.

Params:

Name Type Attribute Description
fn

The listener function to be added for one update

context

The listener context

Returns:

boolean


emit(deltaTime: number): TickerListener

Emit by calling the current function.

Params:

Name Type Attribute Description
deltaTime

time since the last emit.

Returns:

TickerListener


connect(previous: TickerListener): void

Connect to the list.

Params:

Name Type Attribute Description
previous

Input node, previous listener

Returns:

void


destroy(hard: boolean): TickerListener

Destroy and don't use after this.

Params:

Name Type Attribute Description
hard

true to remove the next reference, this
is considered a hard destroy. Soft destroy maintains the next reference.

Returns:

TickerListener


  {
    "comment": "/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI.ticker\n */",
    "meta": {
        "range": [
            162,
            4028
        ],
        "filename": "TickerListener.js",
        "lineno": 10,
        "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker",
        "code": {
            "id": "astnode100046701",
            "name": "TickerListener",
            "type": "ClassDeclaration",
            "paramnames": [
                "fn",
                "context",
                "priority",
                "once"
            ]
        }
    },
    "classdesc": "

Internal class for handling the priority sorting of ticker handlers.

", "access": "private", "kind": "class", "memberof": "PIXI.ticker", "name": "TickerListener", "longname": "PIXI.ticker.TickerListener", "scope": "static", "description": "

Constructor

", "params": [ { "type": { "names": [ "function" ] }, "description": "

The listener function to be added for one update

", "name": "fn" }, { "type": { "names": [ "function" ] }, "optional": true, "defaultvalue": null, "description": "

The listener context

", "name": "context" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "

The priority for emitting

", "name": "priority" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "

If the handler should fire once

", "name": "once" } ], "___id": "T000002R004274", "___s": true, "$methods": [ { "comment": "/**\n * Internal class for handling the priority sorting of ticker handlers.\n *\n * @private\n * @class\n * @memberof PIXI.ticker\n */", "meta": { "range": [ 162, 4028 ], "filename": "TickerListener.js", "lineno": 10, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100046701", "name": "TickerListener", "type": "ClassDeclaration", "paramnames": [ "fn", "context", "priority", "once" ] } }, "classdesc": "

Internal class for handling the priority sorting of ticker handlers.

", "access": "private", "kind": "class", "memberof": "PIXI.ticker", "name": "constructor", "longname": "PIXI.ticker.TickerListener", "scope": "static", "description": "

Constructor

", "params": [ { "type": { "names": [ "function" ] }, "description": "

The listener function to be added for one update

", "name": "fn" }, { "type": { "names": [ "function" ] }, "optional": true, "defaultvalue": null, "description": "

The listener context

", "name": "context" }, { "type": { "names": [ "number" ] }, "optional": true, "defaultvalue": 0, "description": "

The priority for emitting

", "name": "priority" }, { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "

If the handler should fire once

", "name": "once" } ], "___id": "T000002R004274", "___s": true, "$methods": [], "$attributes": [], "$staticmethods": [], "$staticproperties": [], "$augments": [], "$augmentedBy": [], "classConstructor": true, "slug": "constructor" }, { "comment": "/**\n * Simple compare function to figure out if a function and context match.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */", "meta": { "range": [ 2037, 2162 ], "filename": "TickerListener.js", "lineno": 73, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100046760", "name": "TickerListener#match", "type": "MethodDefinition", "paramnames": [ "fn", "context" ] }, "vars": { "": null } }, "description": "

Simple compare function to figure out if a function and context match.

", "params": [ { "type": { "names": [ "function" ] }, "description": "

The listener function to be added for one update

", "name": "fn" }, { "type": { "names": [ "function" ] }, "description": "

The listener context

", "name": "context" } ], "returns": [ { "type": { "names": [ "boolean" ] }, "description": "

true if the listener match the arguments

" } ], "name": "match", "longname": "PIXI.ticker.TickerListener#match", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R004290", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenermatch", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Emit by calling the current function.\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */", "meta": { "range": [ 2334, 2809 ], "filename": "TickerListener.js", "lineno": 85, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100046784", "name": "TickerListener#emit", "type": "MethodDefinition", "paramnames": [ "deltaTime" ] }, "vars": { "": null } }, "description": "

Emit by calling the current function.

", "params": [ { "type": { "names": [ "number" ] }, "description": "

time since the last emit.

", "name": "deltaTime" } ], "returns": [ { "type": { "names": [ "TickerListener" ] }, "description": "

Next ticker

" } ], "name": "emit", "longname": "PIXI.ticker.TickerListener#emit", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R004292", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListeneremit", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Connect to the list.\n * @param {TickerListener} previous - Input node, previous listener\n */", "meta": { "range": [ 2931, 3149 ], "filename": "TickerListener.js", "lineno": 117, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100046841", "name": "TickerListener#connect", "type": "MethodDefinition", "paramnames": [ "previous" ] }, "vars": { "": null } }, "description": "

Connect to the list.

", "params": [ { "type": { "names": [ "TickerListener" ] }, "description": "

Input node, previous listener

", "name": "previous" } ], "name": "connect", "longname": "PIXI.ticker.TickerListener#connect", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R004295", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerconnect", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Destroy and don't use after this.\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */", "meta": { "range": [ 3467, 4026 ], "filename": "TickerListener.js", "lineno": 134, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100046879", "name": "TickerListener#destroy", "type": "MethodDefinition", "paramnames": [ "hard" ] }, "vars": { "": null } }, "description": "

Destroy and don't use after this.

", "params": [ { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "

true to remove the next reference, this
is considered a hard destroy. Soft destroy maintains the next reference.

", "name": "hard" } ], "returns": [ { "type": { "names": [ "TickerListener" ] }, "description": "

The listener to redirect while emitting or removing.

" } ], "name": "destroy", "longname": "PIXI.ticker.TickerListener#destroy", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R004300", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerdestroy", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Simple compare function to figure out if a function and context match.\n *\n * @param {Function} fn - The listener function to be added for one update\n * @param {Function} context - The listener context\n * @return {boolean} `true` if the listener match the arguments\n */", "meta": { "range": [ 2037, 2162 ], "filename": "TickerListener.js", "lineno": 73, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100121439", "name": "TickerListener#match", "type": "MethodDefinition", "paramnames": [ "fn", "context" ] }, "vars": { "": null } }, "description": "

Simple compare function to figure out if a function and context match.

", "params": [ { "type": { "names": [ "function" ] }, "description": "

The listener function to be added for one update

", "name": "fn" }, { "type": { "names": [ "function" ] }, "description": "

The listener context

", "name": "context" } ], "returns": [ { "type": { "names": [ "boolean" ] }, "description": "

true if the listener match the arguments

" } ], "name": "match", "longname": "PIXI.ticker.TickerListener#match", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R011224", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenermatch", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Emit by calling the current function.\n * @param {number} deltaTime - time since the last emit.\n * @return {TickerListener} Next ticker\n */", "meta": { "range": [ 2334, 2809 ], "filename": "TickerListener.js", "lineno": 85, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100121463", "name": "TickerListener#emit", "type": "MethodDefinition", "paramnames": [ "deltaTime" ] }, "vars": { "": null } }, "description": "

Emit by calling the current function.

", "params": [ { "type": { "names": [ "number" ] }, "description": "

time since the last emit.

", "name": "deltaTime" } ], "returns": [ { "type": { "names": [ "TickerListener" ] }, "description": "

Next ticker

" } ], "name": "emit", "longname": "PIXI.ticker.TickerListener#emit", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R011226", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListeneremit", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Connect to the list.\n * @param {TickerListener} previous - Input node, previous listener\n */", "meta": { "range": [ 2931, 3149 ], "filename": "TickerListener.js", "lineno": 117, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100121520", "name": "TickerListener#connect", "type": "MethodDefinition", "paramnames": [ "previous" ] }, "vars": { "": null } }, "description": "

Connect to the list.

", "params": [ { "type": { "names": [ "TickerListener" ] }, "description": "

Input node, previous listener

", "name": "previous" } ], "name": "connect", "longname": "PIXI.ticker.TickerListener#connect", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R011229", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerconnect", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * Destroy and don't use after this.\n * @param {boolean} [hard = false] `true` to remove the `next` reference, this\n * is considered a hard destroy. Soft destroy maintains the next reference.\n * @return {TickerListener} The listener to redirect while emitting or removing.\n */", "meta": { "range": [ 3467, 4026 ], "filename": "TickerListener.js", "lineno": 134, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": { "id": "astnode100121558", "name": "TickerListener#destroy", "type": "MethodDefinition", "paramnames": [ "hard" ] }, "vars": { "": null } }, "description": "

Destroy and don't use after this.

", "params": [ { "type": { "names": [ "boolean" ] }, "optional": true, "defaultvalue": false, "description": "

true to remove the next reference, this
is considered a hard destroy. Soft destroy maintains the next reference.

", "name": "hard" } ], "returns": [ { "type": { "names": [ "TickerListener" ] }, "description": "

The listener to redirect while emitting or removing.

" } ], "name": "destroy", "longname": "PIXI.ticker.TickerListener#destroy", "kind": "function", "memberof": "PIXI.ticker.TickerListener", "scope": "instance", "___id": "T000002R011234", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerdestroy", "filepath": "core\\ticker\\TickerListener.js" } ], "$attributes": [ { "comment": "/**\n * The handler function to execute.\n * @member {Function} PIXI.ticker.TickerListener#fn\n */", "meta": { "range": [ 582, 701 ], "filename": "TickerListener.js", "lineno": 22, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The handler function to execute.

", "kind": "member", "name": "fn", "type": { "names": [ "function" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#fn", "scope": "instance", "___id": "T000002R004276", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerfn", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The calling to execute.\n * @member {Function} PIXI.ticker.TickerListener#context\n */", "meta": { "range": [ 733, 848 ], "filename": "TickerListener.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The calling to execute.

", "kind": "member", "name": "context", "type": { "names": [ "function" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#context", "scope": "instance", "___id": "T000002R004278", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenercontext", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The current priority.\n * @member {number} PIXI.ticker.TickerListener#priority\n */", "meta": { "range": [ 890, 1002 ], "filename": "TickerListener.js", "lineno": 34, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The current priority.

", "kind": "member", "name": "priority", "type": { "names": [ "number" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#priority", "scope": "instance", "___id": "T000002R004280", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerpriority", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * If this should only execute once.\n * @member {boolean} PIXI.ticker.TickerListener#once\n */", "meta": { "range": [ 1046, 1167 ], "filename": "TickerListener.js", "lineno": 40, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

If this should only execute once.

", "kind": "member", "name": "once", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#once", "scope": "instance", "___id": "T000002R004282", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListeneronce", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The next item in chain.\n * @member {TickerListener} PIXI.ticker.TickerListener#next\n */", "meta": { "range": [ 1203, 1321 ], "filename": "TickerListener.js", "lineno": 46, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The next item in chain.

", "kind": "member", "name": "next", "type": { "names": [ "TickerListener" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#next", "scope": "instance", "___id": "T000002R004284", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenernext", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The previous item in chain.\n * @member {TickerListener} PIXI.ticker.TickerListener#previous\n */", "meta": { "range": [ 1357, 1483 ], "filename": "TickerListener.js", "lineno": 52, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The previous item in chain.

", "kind": "member", "name": "previous", "type": { "names": [ "TickerListener" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#previous", "scope": "instance", "___id": "T000002R004286", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerprevious", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * `true` if this listener has been destroyed already.\n * @member {boolean} PIXI.ticker.TickerListener#_destroyed\n * @private\n */", "meta": { "range": [ 1523, 1688 ], "filename": "TickerListener.js", "lineno": 58, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

true if this listener has been destroyed already.

", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#_destroyed", "scope": "instance", "___id": "T000002R004288", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListener_destroyed", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The handler function to execute.\n * @member {Function} PIXI.ticker.TickerListener#fn\n */", "meta": { "range": [ 582, 701 ], "filename": "TickerListener.js", "lineno": 22, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The handler function to execute.

", "kind": "member", "name": "fn", "type": { "names": [ "function" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#fn", "scope": "instance", "___id": "T000002R011210", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerfn", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The calling to execute.\n * @member {Function} PIXI.ticker.TickerListener#context\n */", "meta": { "range": [ 733, 848 ], "filename": "TickerListener.js", "lineno": 28, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The calling to execute.

", "kind": "member", "name": "context", "type": { "names": [ "function" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#context", "scope": "instance", "___id": "T000002R011212", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenercontext", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The current priority.\n * @member {number} PIXI.ticker.TickerListener#priority\n */", "meta": { "range": [ 890, 1002 ], "filename": "TickerListener.js", "lineno": 34, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The current priority.

", "kind": "member", "name": "priority", "type": { "names": [ "number" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#priority", "scope": "instance", "___id": "T000002R011214", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerpriority", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * If this should only execute once.\n * @member {boolean} PIXI.ticker.TickerListener#once\n */", "meta": { "range": [ 1046, 1167 ], "filename": "TickerListener.js", "lineno": 40, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

If this should only execute once.

", "kind": "member", "name": "once", "type": { "names": [ "boolean" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#once", "scope": "instance", "___id": "T000002R011216", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListeneronce", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The next item in chain.\n * @member {TickerListener} PIXI.ticker.TickerListener#next\n */", "meta": { "range": [ 1203, 1321 ], "filename": "TickerListener.js", "lineno": 46, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The next item in chain.

", "kind": "member", "name": "next", "type": { "names": [ "TickerListener" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#next", "scope": "instance", "___id": "T000002R011218", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenernext", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * The previous item in chain.\n * @member {TickerListener} PIXI.ticker.TickerListener#previous\n */", "meta": { "range": [ 1357, 1483 ], "filename": "TickerListener.js", "lineno": 52, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

The previous item in chain.

", "kind": "member", "name": "previous", "type": { "names": [ "TickerListener" ] }, "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#previous", "scope": "instance", "___id": "T000002R011220", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListenerprevious", "filepath": "core\\ticker\\TickerListener.js" }, { "comment": "/**\n * `true` if this listener has been destroyed already.\n * @member {boolean} PIXI.ticker.TickerListener#_destroyed\n * @private\n */", "meta": { "range": [ 1523, 1688 ], "filename": "TickerListener.js", "lineno": 58, "path": "C:\\Users\\beaujeup\\projects\\jsdoc-template\\examples\\pixi.js\\pixi.js-repo\\src\\core\\ticker", "code": {} }, "description": "

true if this listener has been destroyed already.

", "kind": "member", "name": "_destroyed", "type": { "names": [ "boolean" ] }, "access": "private", "memberof": "PIXI.ticker.TickerListener", "longname": "PIXI.ticker.TickerListener#_destroyed", "scope": "instance", "___id": "T000002R011222", "___s": true, "skip": true, "slug": "PIXI.ticker.TickerListener_destroyed", "filepath": "core\\ticker\\TickerListener.js" } ], "$staticmethods": [], "$staticproperties": [], "$augments": [], "$augmentedBy": [], "filepath": "core\\ticker\\TickerListener.js" }