A generic server interface that allows us to mock the server's behavior in tests.

interface Server {
    onConnect(handler: OnConnect): void;
    start(port: number): void;
}

Implemented by

Methods