mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-05-13 21:14:17 +00:00
add layout for remaining processors/modules and order everything
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: HTTP Server
|
||||
sidebar:
|
||||
label: Server
|
||||
order: 2
|
||||
---
|
||||
The `http.server` module emits a message for every HTTP request that is made to the server.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: MIDI Input
|
||||
sidebar:
|
||||
label: Input
|
||||
order: 1
|
||||
---
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: MIDI Output
|
||||
sidebar:
|
||||
label: Output
|
||||
order: 2
|
||||
---
|
||||
import { Aside } from '@astrojs/starlight/components';
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: MQTT Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: NATS Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
|
||||
- **type**: `nats.client`
|
||||
- **params**:
|
||||
- **url**
|
||||
- **subject**
|
||||
@@ -0,0 +1,11 @@
|
||||
---
|
||||
title: NATS Server
|
||||
sidebar:
|
||||
label: Server
|
||||
order: 2
|
||||
---
|
||||
|
||||
- **type**: `nats.server`
|
||||
- **params**:
|
||||
- **ip**
|
||||
- **port**
|
||||
+1
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: TCP Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
The `net.tcp.client` module connects to TCP server and emits messages based on the data it receives from the server that it connects to. Messages are determined by "framing" techniques as TCP is a stream based protocol. The module will attempt to reconnect anytime the connection is closed.
|
||||
+1
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: TCP Server
|
||||
sidebar:
|
||||
label: Server
|
||||
order: 2
|
||||
---
|
||||
The `net.tcp.server` module emits a message messages based on the data it receives from clients that connect to it. Messages are determined by "framing" techniques as TCP is a stream based protocol.
|
||||
+2
-1
@@ -1,7 +1,8 @@
|
||||
---
|
||||
title: UDP Client
|
||||
sidebar:
|
||||
order: 3
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
The `net.udp.client` module sends messages to a the configured `host` and `port`. This module does not produce any messages and so using it as an `input` to a [route](/concepts/routes) would be pointless.
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
title: UDP Multicast
|
||||
sidebar:
|
||||
label: Multicast
|
||||
order: 3
|
||||
---
|
||||
|
||||
- **type**: `net.udp.multicast`
|
||||
- **params**:
|
||||
- **ip**
|
||||
- **port**
|
||||
- **bufferSize**
|
||||
+2
-1
@@ -1,7 +1,8 @@
|
||||
---
|
||||
title: UDP Server
|
||||
sidebar:
|
||||
order: 4
|
||||
label: Server
|
||||
order: 2
|
||||
---
|
||||
The `net.udp.server` module emits a message for every incoming UDP datagram.
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
---
|
||||
title: PSN Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
|
||||
- **type**: `psn.client`
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Redis Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Serial Client
|
||||
sidebar:
|
||||
label: Client
|
||||
order: 1
|
||||
---
|
||||
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
---
|
||||
title: SIP Call Server
|
||||
sidebar:
|
||||
label: Server
|
||||
order: 1
|
||||
---
|
||||
|
||||
- **type**: `sip.call.server`
|
||||
- **params**:
|
||||
- **ip**
|
||||
- **port**
|
||||
- **transport**
|
||||
- **userAgent**
|
||||
@@ -0,0 +1,14 @@
|
||||
---
|
||||
title: SIP DTMF Server
|
||||
sidebar:
|
||||
label: Server
|
||||
order: 1
|
||||
---
|
||||
|
||||
- **type**: `sip.dtmf.server`
|
||||
- **params**:
|
||||
- **ip**
|
||||
- **port**
|
||||
- **transport**
|
||||
- **userAgent**
|
||||
- **separator**
|
||||
Reference in New Issue
Block a user