Skip to content

Commit 3711194

Browse files
committed
add Barodcast to its features - wiki section for Broadcast was published as well
1 parent 59b8198 commit 3711194

File tree

4 files changed

+4
-44
lines changed

4 files changed

+4
-44
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Neffos is a cross-platform real-time framework with expressive, elegant API writ
1010
- Acknowledgements
1111
- Namespaces
1212
- Rooms
13+
- Broadcast
1314
- Event-Driven architecture
1415
- Request-Response architecture
1516
- Error Awareness
@@ -21,7 +22,7 @@ Neffos is a cross-platform real-time framework with expressive, elegant API writ
2122

2223
## Learning neffos
2324

24-
Neffos contains extensive and thorough [wiki](https://github.com/kataras/neffos/wiki) making it easy to get started with the framework.
25+
Neffos contains extensive and thorough **[wiki](https://github.com/kataras/neffos/wiki)** making it easy to get started with the framework.
2526

2627
For a more detailed technical documentation you can head over to our [godocs](https://godoc.org/github.com/kataras/neffos). And for executable code you can always visit the [_examples](_examples/) repository's subdirectory.
2728

ascii_outline.png

-40.4 KB
Binary file not shown.

ascii_outline.txt

-42
This file was deleted.

server.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"sync/atomic"
1111
"time"
1212

13-
"github.com/iris-contrib/go.uuid"
13+
uuid "github.com/iris-contrib/go.uuid"
1414
)
1515

1616
// Upgrader is the definition type of a protocol upgrader, gorilla or gobwas or custom.
@@ -343,6 +343,7 @@ type action struct {
343343
// callers can do whatever they want on a connection outside of a event's callback,
344344
// but make sure that these operations are not taking long time to complete because it delays the
345345
// new incoming connections.
346+
// If "async" is true then this method does not block the flow of the program.
346347
func (s *Server) Do(fn func(*Conn), async bool) {
347348
act := action{call: fn}
348349
if !async {

0 commit comments

Comments
 (0)