InetTransport.OutgoingBufferSize
InetTransport
See also
Specifies the size of outgoing data buffer.
[C++]
void setOutgoingBufferSize(unsigned long Value);
unsigned long getOutgoingBufferSize(void);
[Pascal]
property OutgoingBufferSize : longint;
[VB6]
Property IMCXInetTransport3.OutgoingBufferSize As Long
[ActiveX]
HRESULT _stdcall IMCInetTransport3.OutgoingBufferSize([in] long Value );
HRESULT _stdcall IMCInetTransport3.OutgoingBufferSize([out, retval] long * Value );
[C#]
public int OutgoingBufferSize;
[VB.NET]
Public Property OutgoingBufferSize As Integer
[Java]
public void setOutgoingBufferSize(long value);
public long getOutgoingBufferSize();
[Java ME]
public void setOutgoingBufferSize(long value);
public long getOutgoingBufferSize();
[Palm]
void setOutgoingBufferSize(unsigned long Value);
unsigned long getOutgoingBufferSize(void);
[DLL]
void __stdcall MCInetTransportSetOutgoingBufferSize(HMCInetTransport h, unsigned long value);
unsigned long __stdcall MCInetTransportGetOutgoingBufferSize(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the size of the memory buffer, used for outgoing data. Minimum size is 1024 bytes, default is 8192 bytes.
Buffers are allocated statically for each transport thread so if you expect the large number of connections, don't set too large values to this property.
|