@jolie/http-utils
v0.1.0
Published
An HTTP utility library for Jolie
Downloads
2
Readme
Jolie HTTP utils
A utility library for HTTP.
Installation
jpm add @jolie/http-utils
Usage example
from @jolie.http-utils import HttpUtils
service Example {
embed HttpUtils as httpUtils
main {
// Connect to the stream
connectStream@httpUtils( {
uri = "https://your-website"
} )( sid )
provide
[ next( mesg ) ] {
// Received a message in the stream
}
until
[ end( m ) ] {
// Stream ended
}
}
}