#include <ace/FIFO_Send.h>
class ACE_FIFO_Send : public ACE_FIFO {
public:
ACE_FIFO_Send (void);
ACE_FIFO_Send ( const ASYS_TCHAR *rendezvous, int flags = O_WRONLY, int perms = ACE_DEFAULT_FILE_PERMS, LPSECURITY_ATTRIBUTES sa = 0 );
int open ( const ASYS_TCHAR *rendezvous, int flags = O_WRONLY, int perms = ACE_DEFAULT_FILE_PERMS, LPSECURITY_ATTRIBUTES sa = 0 );
ssize_t send (const void *buf, size_t len);
ssize_t send_n (const void *buf, size_t len);
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;
};
ACE_FIFO_Send (void);
ACE_FIFO_Send (
const ASYS_TCHAR *rendezvous,
int flags = O_WRONLY,
int perms = ACE_DEFAULT_FILE_PERMS,
LPSECURITY_ATTRIBUTES sa = 0
);
int open (
const ASYS_TCHAR *rendezvous,
int flags = O_WRONLY,
int perms = ACE_DEFAULT_FILE_PERMS,
LPSECURITY_ATTRIBUTES sa = 0
);
ssize_t send (const void *buf, size_t len);
buf
of up to len
bytes.
ssize_t send_n (const void *buf, size_t len);
buf
of exactly len
bytes (block until done).
void dump (void) const;
ACE_ALLOC_HOOK_DECLARE;