We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API proposal
Pid ! Msg %% send in a reliable way unless Msg is {:urel, Data} Pid ! {:rel, Msg} %% send in a reliable way Pid ! {:urel, Msg} %% send in an unreliable way
This should be checked here https://github.com/mickel8/quic_dist/blob/master/src/quic_dist_cntrlr.erl#L265-L278 and when :urel atom is present quicer:send_dgram should be used. Besides this, connection has to be configured to use datagrams. This has to be done here https://github.com/mickel8/quic_dist/blob/master/src/quic_dist.erl#L19 and here https://github.com/mickel8/quic_dist/blob/master/src/quic_connector.erl#L32
:urel
quicer:send_dgram
The text was updated successfully, but these errors were encountered:
No branches or pull requests
API proposal
This should be checked here https://github.com/mickel8/quic_dist/blob/master/src/quic_dist_cntrlr.erl#L265-L278
and when
:urel
atom is presentquicer:send_dgram
should be used. Besides this, connection has to be configured to use datagrams. This has to be done herehttps://github.com/mickel8/quic_dist/blob/master/src/quic_dist.erl#L19
and here https://github.com/mickel8/quic_dist/blob/master/src/quic_connector.erl#L32
The text was updated successfully, but these errors were encountered: