roslib
    Preparing search index...

    Interface RosbridgeCallServiceMessage<TArgs>

    interface RosbridgeCallServiceMessage<TArgs = unknown> {
        args: TArgs;
        compression?: string;
        fragment_size?: number;
        id?: string;
        op: "call_service";
        service: string;
        timeout?: number;
    }

    Type Parameters

    • TArgs = unknown

    Hierarchy (View Summary)

    Index

    Properties

    args: TArgs

    TODO this should be deeply partial when outgoing, because rosbridge will "fill in the blanks", but it's not partial when incoming - need to figure out a way to represent this.

    compression?: string
    fragment_size?: number
    id?: string
    op: "call_service"
    service: string
    timeout?: number