File size: 616 Bytes
9ada4bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { invariant } from 'outvariant'
import { DeferredPromise } from '@open-draft/deferred-promise'

export class RequestController {
  public responsePromise: DeferredPromise<Response | undefined>

  constructor(protected request: Request) {
    this.responsePromise = new DeferredPromise()
  }

  public respondWith(response?: Response): void {
    invariant(
      this.responsePromise.state === 'pending',
      'Failed to respond to "%s %s" request: the "request" event has already been responded to.',
      this.request.method,
      this.request.url
    )

    this.responsePromise.resolve(response)
  }
}