(event: StreamEvent)
| 88 | } |
| 89 | |
| 90 | publish(event: StreamEvent): void { |
| 91 | const envelope = this.createEnvelope(event) |
| 92 | this.enqueue(envelope) |
| 93 | this.queuePersistence(envelope) |
| 94 | if (event.type === MothershipStreamV1EventType.complete) { |
| 95 | this._sawComplete = true |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | markDisconnected(): void { |
| 100 | this._clientDisconnected = true |
nothing calls this directly
no test coverage detected