Action to take when the message queue is going to overflow.
Source position: simpleipc.pp line 40
| type TIPCMessageOverflowAction = ( | ||
| ipcmoaNone, | 
 | Do nothing, just add the message. | 
| ipcmoaDiscardOld, | 
 | Discard the oldest message. | 
| ipcmoaDiscardNew, | 
 | Discard the new message. | 
| ipcmoaError | 
 | Raise an error. | 
| ); | 
TIPCMessageOverflowAction describes what will happen if the message queue hits the size limit for the queue.
| 
 | Default action to take take when the message queue is going to overflow. | |
| 
 | Action to take when the number of messages will exceed MaxCount. | |
| 
 | Maximum number of messages in the queue, 0 for unlimited. |