Bob Weinand
Bob Weinand
If you revert the latest commit, does it work again then?
a) Would not be a major issue unless there's a hard failure if you try to manually assign a same IP to different containers ... At least starvation of address...
@arkodg Any chance you can give some feedback here please? :-)
Is there any real gain from this? Does it expose any real world issues?
I sometimes, but rarely, have that need. In these cases, it typically is just fine to handle the abortion in the callback directly, i.e. ``` PHP function ($ex, $val) {...
This sounds like a legitimate, though extremely edge case. I've not once encountered a need for something like this. But in this very special case you should be able to...
I still think it shouldn't be part of this standard. It is an edge case. It should be trivial to add another method in the custom Observable implementation or to...
> What's the use case of observables if not (potentially infinite) streams? Finite streams. > I think it will be common in libraries to declare the interop promise as return...
@joshdifabio void ≠ null. It's just PHP which makes void functions return null. `void` actually means "value irrelevant". @davidwdan infinite streams are fine as long as the time they are...
@kelunik Correct. There may never be a _value_ available, but then it will be resolved with an exception instead.