Options
All
  • Public
  • Public/Protected
  • All
Menu

Class OutputChannelManager

Manages output channels.

Ask the output channel manager when you want to get an output channel for a particular name.

Hierarchy

  • OutputChannelManager

Implements

  • Disposable

Index

Properties

Methods

Properties

Private _channels

_channels: Map<string, OutputChannel> = new Map<string, vscode.OutputChannel>()

Channels that this manager knows about

Methods

dispose

  • dispose(): void
  • Dispose all channels created by this manager

    Returns void

get

  • get(name: string): OutputChannel
  • Get the single instance of a channel with the given name. If the channel doesn't exist, it will be created and returned.

    Parameters

    • name: string

      The name of the channel to obtain

    Returns OutputChannel

Generated using TypeDoc