xref: /third_party/node/deps/undici/src/lib/dispatcher.js (revision 1cb0ef41)
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/deps/undici/src/lib/
11cb0ef41Sopenharmony_ci'use strict'
21cb0ef41Sopenharmony_ci
31cb0ef41Sopenharmony_ciconst EventEmitter = require('events')
41cb0ef41Sopenharmony_ci
51cb0ef41Sopenharmony_ciclass Dispatcher extends EventEmitter {
61cb0ef41Sopenharmony_ci  dispatch () {
71cb0ef41Sopenharmony_ci    throw new Error('not implemented')
81cb0ef41Sopenharmony_ci  }
91cb0ef41Sopenharmony_ci
101cb0ef41Sopenharmony_ci  close () {
111cb0ef41Sopenharmony_ci    throw new Error('not implemented')
121cb0ef41Sopenharmony_ci  }
131cb0ef41Sopenharmony_ci
141cb0ef41Sopenharmony_ci  destroy () {
151cb0ef41Sopenharmony_ci    throw new Error('not implemented')
161cb0ef41Sopenharmony_ci  }
171cb0ef41Sopenharmony_ci}
181cb0ef41Sopenharmony_ci
191cb0ef41Sopenharmony_cimodule.exports = Dispatcher
20

Indexes created Thu Nov 07 10:32:03 CST 2024