File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree File renamed without changes.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class Dispatcher {
2424 /**
2525 * @param {object } options
2626 * @param {import('../node.js') } options.node
27- * @param {import('./registry .js').CapabilityRegistry } options.registry
27+ * @param {import('./capability_registry .js').CapabilityRegistry } options.registry
2828 */
2929 constructor ( { node, registry } ) {
3030 if ( ! node ) throw new TypeError ( 'Dispatcher: options.node is required' ) ;
@@ -37,7 +37,7 @@ class Dispatcher {
3737 /**
3838 * Bind handlers for a freshly-accepted connection. The dispatcher takes
3939 * full ownership of the connection's lifecycle from this point on.
40- * @param {import('./transport .js').Connection } conn
40+ * @param {import('./connection .js').Connection } conn
4141 */
4242 handle ( conn ) {
4343 const state = {
Original file line number Diff line number Diff line change 88
99'use strict' ;
1010
11- const { CapabilityRegistry } = require ( './registry .js' ) ;
11+ const { CapabilityRegistry } = require ( './capability_registry .js' ) ;
1212const { Dispatcher } = require ( './dispatcher.js' ) ;
13- const { Connection, TransportAdapter } = require ( './transport.js' ) ;
13+ const { Connection } = require ( './connection.js' ) ;
14+ const { TransportAdapter } = require ( './transport_adapter.js' ) ;
1415const { WebSocketTransport } = require ( './transports/ws.js' ) ;
1516
1617/**
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1010
1111const { WebSocketServer } = require ( 'ws' ) ;
1212const debug = require ( 'debug' ) ( 'rclnodejs:runtime:ws' ) ;
13- const { Connection, TransportAdapter } = require ( '../transport.js' ) ;
13+ const { Connection } = require ( '../connection.js' ) ;
14+ const { TransportAdapter } = require ( '../transport_adapter.js' ) ;
1415
1516/**
1617 * A {@link Connection} backed by a single `ws.WebSocket`. JSON-encodes every
You can’t perform that action at this time.
0 commit comments