Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | // SPDX-License-Identifier: Apache-2.0
import { IOBserver } from '../controller/IObserver';
import { DockerService } from '../services/DockerService';
import { LoggerService } from '../services/LoggerService';
import { ServiceLocator } from '../services/ServiceLocator';
import { EventType } from '../types/EventType';
import { IState } from './IState';
export class AttachState implements IState{
/**
* The logger service used for logging messages.
*/
private logger: LoggerService;
/**
* Represents the Docker service used by the AttachState class.
*/
private dockerService: DockerService;
/**
* The observer for the AttachState.
*/
private observer: IOBserver | undefined;
/**
* The name of the state.
*/
private stateName: string;
/**
* Represents the AttachState class.
* This class is responsible for initializing the AttachState object.
*/
constructor() {
this.stateName = AttachState.name;
this.logger = ServiceLocator.Current.get<LoggerService>(LoggerService.name);
this.dockerService = ServiceLocator.Current.get<DockerService>(DockerService.name);
this.logger.trace('Attach State Initialized!', this.stateName);
}
/**
* Subscribes an observer to receive updates from this AttachState instance.
* @param {IOBserver} observer The observer to subscribe.
*/
public subscribe(observer: IOBserver): void {
this.observer = observer;
}
/**
* Starts the state.
* @public
* @returns {Promise<void>}
*/
public async onStart(): Promise<void> {
this.observer!.update(EventType.Finish);
}
}
|