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
Message
The node.send function currently takes an argument of the type Message this isn't optimal as we cannot expect endusers to know all those fields.
node.send
There are 3 functions, each for sending a message.
Sending to an address:
send(to: UBID, message: Data)
Sending to a service:
send(service: UBID, message: Data)
Sending to an address and service, this function is called by the above functions.
send(to: UBID, service: UBID, message: Data)
The text was updated successfully, but these errors were encountered:
closed by #89
Sorry, something went wrong.
ec2
Successfully merging a pull request may close this issue.
Problem
The
node.send
function currently takes an argument of the typeMessage
this isn't optimal as we cannot expect endusers to know all those fields.Acceptance Criteria
There are 3 functions, each for sending a message.
Sending to an address:
Sending to a service:
Sending to an address and service, this function is called by the above functions.
The text was updated successfully, but these errors were encountered: