delphizmq icon indicating copy to clipboard operation
delphizmq copied to clipboard

0MQ Delphi binding

Results 8 delphizmq issues
Sort by recently updated
recently updated
newest added

hi,Why delphizmq not support ZEROMQ4?

Inside zmpapi.pas, we have two different critical section lock records. Both are named: cs: TRTLCriticalSection One is global to the implementation section of this unit, and one is a private...

These two properties functions are declared private, and they are not used in TZMQFrame class. So Delphi generates related warnings. This happens, when zmq3 is defined, which is default setting.

Compiling with Delphi 10 Update 1, Win32 target. Trying to run `hwserver`/`hwclient` (the first "Hello World" example from [ZeroMQ Guide](http://zguide.zeromq.org/page:all#header-11). The client fails with an access violation on line 33:...

I receive the following error message when attempting to use TZMQPoller.Poll with the 64-bit ZeroMQ library (3.2.4, in this case): **"Assertion failed: Invalid argument (......\src\zmq.cpp:868)"** The following is an example...

An access violation occurs when attempting to get a new socket from a context using `TZMQContext.socket`. This is resulting from attempting to call `fContext.RemoveSocket( Self )` during the TZMQSocket destructor....

Building with Delphi XE, I get a bunch of very annoying W1057 "implicit string conversion" warnings in zmqapi.pas, plus a few W1078 "potential data loss in implicit conversion". (PS: the...

Now `zmqapi` unit installs Ctrl-C handlers, which is good idea for clean termination of application. But such signal handler could also be helpful for other task, so unit should only...

enhancement