#57618: ExtHost: Implement writable output channels using spdlog

This commit is contained in:
Sandeep Somavarapu
2018-09-04 15:26:19 +02:00
parent a030947fd6
commit 5dbd093581
12 changed files with 187 additions and 116 deletions

View File

@@ -302,11 +302,12 @@ export interface MainThreadMessageServiceShape extends IDisposable {
}
export interface MainThreadOutputServiceShape extends IDisposable {
$append(channelId: string, label: string, value: string): TPromise<void>;
$clear(channelId: string, label: string): TPromise<void>;
$dispose(channelId: string, label: string): TPromise<void>;
$reveal(channelId: string, label: string, preserveFocus: boolean): TPromise<void>;
$register(channelId: string, label: string, file?: UriComponents): TPromise<void>;
$append(channelId: string, value: string): TPromise<void>;
$clear(channelId: string): TPromise<void>;
$reveal(channelId: string, preserveFocus: boolean): TPromise<void>;
$close(channelId: string): TPromise<void>;
$dispose(channelId: string): TPromise<void>;
}
export interface MainThreadProgressShape extends IDisposable {