Add autoSubscribe option to driver factory
You can affect whether the request Observable will be automatically subscribed when calling httpDriver(request$)
by giving the autoSubscribe
option to the factory: makeHTTPDriver({autoSubscribe: true})
. Default value for autoSubscribe
is true
, so to force lazy behavior, call httpDriver = makeHTTPDriver({autoSubscribe: false})
.
Implements to #14.