remove async connection.

This commit is contained in:
Miroslav Šedivý
2021-07-17 15:45:41 +02:00
parent b3a8d5f86d
commit 0408acd211
3 changed files with 13 additions and 13 deletions

View File

@ -19,11 +19,11 @@ export abstract class ReconnecterAbstract extends EventEmitter<ReconnecterAbstra
throw new Error("Getter'connected()' must be implemented.")
}
public async connect() {
public connect() {
throw new Error("Method 'connect()' must be implemented.")
}
public async disconnect() {
public disconnect() {
throw new Error("Method 'disconnect()' must be implemented.")
}
}