[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Base class for IPC client and server functionality
Source position: advancedipc.pp line 65
type TIPCBase = class(TComponent) |
||
public |
||
class procedure FindRunningServers(); |
|
Find all running servers with matching server ID prefix |
class function ServerRunning(); overload; |
|
Check if a server with given ID is running |
property ServerID: string; [rw] |
|
Server identifier for IPC communication |
property Global: Boolean; [rw] |
|
Communication scope (global or local) |
property MessageVersion: Integer; [rw] |
|
Message version for compatibility checking |
end; |
|
Base class for IPC client and server functionality |
|
| | | ||
| | | ||
| | | ||
The TIPCBase class provides common functionality for both IPC clients and servers. It handles server identification, global/local communication scope, message versioning, and low-level message operations.
|
IPC client for sending requests and receiving responses |
|
|
IPC server for receiving requests and sending responses |