mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Rename ackId to charCount
This commit is contained in:
@@ -220,7 +220,7 @@ export class ExtHostPseudoterminal implements ITerminalChildProcess {
|
||||
}
|
||||
}
|
||||
|
||||
acknowledgeDataEvent(ackId: number): void {
|
||||
acknowledgeDataEvent(charCount: number): void {
|
||||
// TODO: Determine whether ExtHostPseudoterminal terminals should support flow control, this
|
||||
// would need resume/pause APIs
|
||||
|
||||
@@ -495,8 +495,8 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
|
||||
return disposables;
|
||||
}
|
||||
|
||||
public $acceptProcessAckDataEvent(id: number, ackId: number): void {
|
||||
this._terminalProcesses.get(id)?.acknowledgeDataEvent(ackId);
|
||||
public $acceptProcessAckDataEvent(id: number, charCount: number): void {
|
||||
this._terminalProcesses.get(id)?.acknowledgeDataEvent(charCount);
|
||||
}
|
||||
|
||||
public $acceptProcessInput(id: number, data: string): void {
|
||||
|
||||
Reference in New Issue
Block a user