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
e.g.,
fun <- function(x) cat(rawToChar(x)) fun <- function(x) cat(rawToChar(x)) req1 <- HttpRequest$new(url = "https://httpbin.org/get" )$get(query = list(foo = "bar"), stream = fun) req2 <- HttpRequest$new(url = "https://httpbin.org/get" )$get(query = list(hello = "world"), stream = fun) out <- AsyncVaried$new(req1, req2) out$request() #> Error in (function (x) : unused argument (0) #> Error in (function (x) : unused argument (1)
looks like he's changed the expected function structure expected passed to data param
data
The text was updated successfully, but these errors were encountered:
#102 drop down to require curl v3.2 or less
c8b253d
fix #101 add ability to pass opts, proxies, auth, and headers to Async initialize, new() update tests for the changes
#102 fix for stream with Async and AsyncVaried, should be working now
ffd1db5
though behavior has changed a bit
235ae59
f4d745a
Successfully merging a pull request may close this issue.
e.g.,
looks like he's changed the expected function structure expected passed to
data
paramThe text was updated successfully, but these errors were encountered: