Standard interface for objects that have a primary task that may initiate after construction.

interface Startable {
    start(): void;
}

Methods

Methods

  • Commence with the object's primary activity.

    Start should have no effect if the object is already started.

    Returns void