Datasnap.DSServer.TDSServer.ChannelQueueSize

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
Datasnap.DSServer.pas
Datasnap.DSServer.hpp
Unit: Datasnap.DSServer
Parent: TDSServer

Delphi

property ChannelQueueSize: Integer read FChannelQueueSize write FChannelQueueSize default 100;

C++

__property int ChannelQueueSize = {read=FChannelQueueSize, write=FChannelQueueSize, default=100};

Description

Specifies the number of messages that can be queued for sending operations.

The ChannelQueueSize property specifies the number of messages that can be queued for sending to a specific client at once. If the queue reaches this size, all attempts to send to that client will fail until the size of the queue decreases. That means one or more messages get sent.

See Also