Yuras
Yuras
@alexanderkjeldaas Thank you, now it makes more sense. Will simple "writeFDF :: Handle -> HashMap Text (Object ()) -> IO ()" function work for you? It requires handle to write...
It's a surprise for me that `pdf-toolbox` is not on stackage. It definitely [was](https://www.stackage.org/package/pdf-toolbox-document/snapshots), and I'm not sure what happened. Right now `pdf-toolbox` is a state where the stable version...
Yeah, simpler API would be great. Though I'm not sure how exactly it should look like. I'll think about it, thank you for the input.
> How does one decide that there won't be any more foo messages? It could be some external event. If you want a particular example, imaging that we have a...
@informatikr > Is there a Redis client in another language that has a really nice pubSub API that we might want to copy? Python? https://pypi.python.org/pypi/redis It has a special pubsub...
Also, python redis library supports reading subscribe/unsubscribe confirmation: ``` >>> p.get_message() {'pattern': None, 'type': 'subscribe', 'channel': 'my-second-channel', 'data': 1L} ```
@k-bx > it's not clear to me how python code does what we want. You should probably read the docs I liked to: ``` There are three different strategies for...
@qrilka It is not necessary to copy python API exactly. As I mentioned a number of times, `(p)(un)subscribe` should block waiting for acknowledgement. Unlike in python, we have lightweight threads,...
Probably caused by https://github.com/haskell/zlib/issues/65 @Inplex-sys I'd suggest to try with `bundled-c-zlib` flag as suggested in the above issue. Also see https://gitlab.haskell.org/ghc/ghc/-/issues/24531
I guess the same issue exists with [managerRawConnection](https://github.com/snoyberg/http-client/blob/2580cce859d2272de9c4ac5ef8c67643ad934207/http-client-tls/Network/HTTP/Client/TLS.hs#L87-L90) as well, though I didn't try it.