Skip to content

Commit fb75aa9

Browse files
Replace SocketAdapter with Transports (#1060)
1 parent 3fd36e2 commit fb75aa9

File tree

14 files changed

+1483
-598
lines changed

14 files changed

+1483
-598
lines changed

src/RosLib.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ export { default as Param } from "./core/Param.js";
1313
export { default as Service } from "./core/Service.js";
1414
export { default as Action } from "./core/Action.js";
1515

16+
// Core Transport exports
17+
export {
18+
AbstractTransport,
19+
type ITransport,
20+
type ITransportFactory,
21+
type TransportEvent,
22+
} from "./core/transport/Transport.js";
23+
export { WebSocketTransportFactory } from "./core/transport/WebSocketTransportFactory.js";
24+
1625
// ActionLib exports
1726
export { default as ActionClient } from "./actionlib/ActionClient.js";
1827
export { default as ActionListener } from "./actionlib/ActionListener.js";

0 commit comments

Comments
 (0)