update settings

This commit is contained in:
2020-04-05 05:47:56 +10:00
parent 18d8bda5b1
commit c87f324375
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -149,7 +149,7 @@ func main() {
### RWMutex
!> A RWMutex is a reader/writer mutual exclusion lock. The lock can be held by an arbitrary number of readers or a single writer. The zero value for a RWMutex is an unlocked mutex.
!> In other words, readers don't have to wait for each other. They only have to wait for writers holding the lock.
In other words, readers don't have to wait for each other. They only have to wait for writers holding the lock.
### string literals
+1 -1
View File
@@ -23,7 +23,7 @@ The most important aspect of pub/sub is the decoupling of the publisher of the m
* **Synchronization decoupling**: Operations on both components do not need to be interrupted during publishing or receiving.
> In summary, the pub/sub model removes direct communication between the publisher of the message and the recipient/subscriber. The filtering activity of the broker makes it possible to control which client/subscriber receives which message. The decoupling has three dimensions: space, time, and synchronization.
!> In summary, the pub/sub model removes direct communication between the publisher of the message and the recipient/subscriber. The filtering activity of the broker makes it possible to control which client/subscriber receives which message. The decoupling has three dimensions: space, time, and synchronization.
MQTT embodies all the aspects of pub/sub that weve mentioned: