mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-12-02 12:13:18 +01:00
37 lines
495 B
Go
37 lines
495 B
Go
package events
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
type Event interface {
|
|
Contains(int) bool
|
|
Processed()
|
|
WaitForProcessed()
|
|
}
|
|
|
|
type EventStruct struct {
|
|
code int
|
|
lock sync.Mutex
|
|
}
|
|
|
|
func (event EventStruct) Contains(code int) bool {
|
|
return event.code&code != 0
|
|
}
|
|
|
|
func (event *EventStruct) WaitForProcessed() {
|
|
event.lock.Lock()
|
|
}
|
|
|
|
func (event *EventStruct) Processed() {
|
|
event.lock.Unlock()
|
|
}
|
|
|
|
func NewEvent(code int) Event {
|
|
event := &EventStruct{
|
|
code: code,
|
|
}
|
|
event.lock.Lock()
|
|
return event
|
|
}
|