You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/documentation/eventmesh/cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Command-line interface
2
2
3
-
`FaasNet.EventMeshCTL.CLI.exe` is the CLI tool that ships with EventMeshServer. It supports a wide range of operations, mostly administrative in nature.
3
+
`FaasNet.EventMeshCTL.CLI.exe` is the CLI tool that ships with EventMesh. It supports a wide range of operations, mostly administrative in nature.
A Peer Node is a communication endpoint capable of treating EventMesh, Raft and Gossip request.
6
+
7
+
Two or more Peers can form a cluster, they all share the same functionality.
8
+
9
+
## Cluster
10
+
11
+
A cluster network is two or more services working together for a common purpose.
12
+
13
+
These networks take advantage of the parallel processing power. In addition to the increased processing power, can also provide scalability, high availability and failover capabilities.
14
+
15
+
## Client
16
+
17
+
Any types of application that implement the EventMesh protocol.
18
+
19
+
A client is capable of sending and/or receiving messages.
20
+
21
+
## Session
22
+
23
+
A session is a communication channel established between one Peer Node and a client.
24
+
25
+
It is used to send and receive messages.
26
+
27
+
There are two kinds of session :
28
+
***Subscription** : Subscribe to one or more topics.
29
+
***Publish** : Publish one or more messages.
30
+
31
+
## Topic
32
+
33
+
Topic is a mean of classifying information.
34
+
35
+
## Message Virtual Private Network (VPN)
36
+
37
+
Allows for the segregation of topic space and clients. Message VPNs also group clients connecting to a network of event broker, such that messages published within a particular group are only visible to that group's clients.
38
+
39
+
## Message VPN bridge
40
+
41
+
Link two Message VPNs so that messages published to one message VPN that match the topic subscriptions set for the bridge are also delivered to the linked message VPN.
42
+
43
+
## CloudEvent
44
+
45
+
Specification for describing event data in a common way.
0 commit comments