doc.go 631 Bytes
Newer Older
1
// Package event contains the abstractions for a local event bus, along with the standard events
tavit ohanian's avatar
tavit ohanian committed
2
// that p2p subsystems may emit.
3 4 5 6 7 8 9 10 11
//
// Source code is arranged as follows:
// 	* doc.go: this file.
//	* bus.go: abstractions for the event bus.
//	* rest: event structs, sensibly categorised in files by entity, and following this naming convention:
//          Evt[Entity (noun)][Event (verb past tense / gerund)]
//    The past tense is used to convey that something happened, whereas the gerund form of the verb (-ing)
//    expresses that a process is in progress. Examples: EvtConnEstablishing, EvtConnEstablished.
package event