Skip to content

Instantly share code, notes, and snippets.

@jcmaslan
Last active September 23, 2024 16:01
Show Gist options
  • Save jcmaslan/6f3103d1088fb07d7dcc578d39aebbba to your computer and use it in GitHub Desktop.
Save jcmaslan/6f3103d1088fb07d7dcc578d39aebbba to your computer and use it in GitHub Desktop.
graph TD
    subgraph SETUP
        A[register]
        B[applyLicensePlan]
        C[query cameras]
        D[query videoTopics]
        E[query eventTopics]
        F0{choose streams}
        A --> B
        B --> C
        C --> D
        C --> E
        D --> F0
        E --> F0
    end

    subgraph LISTEN
        F[StreamAvailability.rtsp]
        F0 --> F
    end

    subgraph ANALYZE
        G[Camio Vector Search]
        H[Camio Actions]
        F --> G
        G --> H
    end

    subgraph PUBLISH
        I[POST TopicAvailability.rest]
        H --> I
    end
Loading
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment