Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 1.22 KB

Terminology.md

File metadata and controls

18 lines (16 loc) · 1.22 KB

Terminology

Term Definition
server listen and accept quic connections from clients
client initiates quic connection
listener Erlang Process owns listening port
connection Quic Connection
stream Exchanging app data over a connection
owner 'owner' is a process that receives quic events.
'connection owner' receive events of a connection
'stream owner' receive application data and events from a stream
'listener owner' receive events from listener
When owner is dead, related resources would be released
l_ctx listener nif context
c_ctx connection nif context
s_ctx stream nif context