Command.end() Method

The Command.end() method stops activating a command; every call should be paired with a begin() call.

Syntax

command.end()

Parameters

This function has no parameters.

Return value

No value is returned (i.e.,undefined).

Example

> ident = simulator.findCommand("sim/transponder/transponder_ident")
Command{ name: "sim/transponder/transponder_ident" }
> ident.begin()
undefined
> ident.end()
undefined

References