UNPKG

@foxglove/ros1

Version:

Standalone TypeScript implementation of the ROS 1 (Robot Operating System) protocol with a pluggable transport layer

14 lines (11 loc) 354 B
import { Client } from "./Client"; export class SubscriberLink { readonly connectionId: number; destinationCallerId: string; client: Client; constructor(connectionId: number, destinationCallerId: string, client: Client) { this.connectionId = connectionId; this.destinationCallerId = destinationCallerId; this.client = client; } }