Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. COSorry for my ignorance but what is Blocking and Non Blocking? I have never come across this terms even after programming for 15+ year now. In fact I have never come across such a requirement till date. This is for the first time that a client has asked for a facility that will allow our apps running on different PC to communicate and exchange data between them. I was actually planning to adopt DCOM but the fact is that using COM in Delphi is pure Pain in the...
      singulars
    2. COI've had really bad experiences with DCOM as far back as the original MIDAS, which used DCOM as the default transport. If you decide to try it, do some investigation first. Blocking calls stop code execution until the call has finished. For interactive apps, these should be used in threads. Non-blocking calls return control immediately and notify you with an event when the call has completed. Both have their advantages and disadvantages.
      singulars
    3. COCOM in Delphi is probably the easiest way to use COM, but it's usually not the best way to work across a network. Blocking and non-blocking relates to how the operating system handles the thread that initiates I/O (a blocked thread or process is not scheduled to run until it is unblocked). Blocking I/O causes the thread to be unscheduled by the OS scheduler until the I/O completes. Non-blocking I/O doesn't block the thread, the thread keeps on running, but needs to use a callback or polling or other mechanism to notify of completion.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload