1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-12 18:02:59 +00:00
arikawa/utils
diamondburned 54cadd2f45 gateway: Refactor for a better concurrent API
This commit refactors the whole package gateway as well as utils/ws
(formerly utils/wsutil) and voice/voicegateway. The new refactor
utilizes a design pattern involving a concurrent loop and an arriving
event channel.

An additional change was made to the way gateway events are typed.
Before, pretty much any type will satisfy a gateway event type, since
the actual type was just interface{}. The new refactor defines a
concrete interface that events can implement:

    type Event interface {
        Op() OpCode
        EventType() EventType
    }

Using this interface, the user can easily add custom gateway events
independently of the library without relying on string maps. This adds a
lot of type safety into the library and makes type-switching on Event
types much more reasonable.

Gateway error callbacks are also almost entirely removed in favor of
custom gateway events. A catch-all can easily be added like this:

    s.AddHandler(func(err error) {
        log.Println("gateway error:, err")
    })
2021-12-14 13:49:34 -08:00
..
bot gateway: Refactor for a better concurrent API 2021-12-14 13:49:34 -08:00
cmd gateway: Refactor for a better concurrent API 2021-12-14 13:49:34 -08:00
handler gateway: Refactor for a better concurrent API 2021-12-14 13:49:34 -08:00
httputil utils/httputil: Fix build error from previous commit 2021-11-29 12:41:13 -08:00
json discord: Add {Min,Max} into {Integer,Number}Option 2021-12-01 12:11:59 -08:00
sendpart api: Update sending/editing messages for v9 (#230) 2021-06-17 23:32:11 -07:00
ws gateway: Refactor for a better concurrent API 2021-12-14 13:49:34 -08:00
generate-option-marshalers.sh discord: Improve union interface documentation; fix *Option JSON 2021-11-25 15:02:24 -08:00