Defines the member functions for the base class of the ACE_SPIPE abstraction.
More...
#include <SPIPE.h>
|
int | close () |
| Close down the SPIPE without removing the rendezvous point.
|
|
int | remove () |
|
int | get_local_addr (ACE_SPIPE_Addr &) const |
| Return the local address of this endpoint.
|
|
int | disable (int signum) const |
|
void | dump () const |
| Dump the state of an object.
|
|
int | control (int cmd, void *) const |
| Interface for <ioctl>.
|
|
int | enable (int value) const |
|
int | disable (int value) const |
|
ACE_HANDLE | get_handle () const |
| Get the underlying handle.
|
|
void | set_handle (ACE_HANDLE handle) |
| Set the underlying handle.
|
|
void | dump () const |
| Dump the state of an object.
|
|
Defines the member functions for the base class of the ACE_SPIPE abstraction.
ACE_SPIPE was designed as a wrapper facade for STREAM pipes. On Windows, however, ACE_SPIPE is a wrapper for Named Pipes. Therefore, on Windows, it is better to use the ACE_Proactor or blocking operations in lieu of using the ACE_Reactor.
- See also
- ACE_SPIPE_Acceptor for additional notes on use with ACE_Reactor on Windows.
- Warning
- Windows: Works only on Windows NT 4 and higher.
-
Works on non-Windows platforms only when
ACE_HAS_STREAM_PIPES
is defined.
◆ ACE_SPIPE()
Ensure that this class is an abstract base class.
◆ close()
Close down the SPIPE without removing the rendezvous point.
Closes the underlying pipe handle and sets this object's handle value to ACE_INVALID_HANDLE
.
- Returns
- 0 for success; -1 for failure. If a failure occurs, further error information is available from ACE_OS::last_error().
◆ disable()
int ACE_SPIPE::disable |
( |
int |
signum | ) |
const |
|
inline |
Disable signal
- signum.
- Note
- This reimplements the inherited method from ACE_IPC_SAP. Since the signal actions do not make any sense on Windows, this method intercepts the call and NOPs it. On non-Windows, it is passed through to ACE_IPC_SAP::disable().
◆ dump()
void ACE_SPIPE::dump |
( |
| ) |
const |
Dump the state of an object.
◆ get_local_addr()
Return the local address of this endpoint.
Returns the local address of the SPIPE's endpoint in
- addr.
- Returns
- 0 for success; -1 for failure. If a failure occurs, further error information is available from ACE_OS::last_error().
◆ remove()
int ACE_SPIPE::remove |
( |
| ) |
|
Close down the SPIPE and remove the rendezvous point from the file system.
- Returns
- 0 for success; -1 for failure. If a failure occurs, further error information is available from ACE_OS::last_error().
◆ ACE_ALLOC_HOOK_DECLARE
ACE_SPIPE::ACE_ALLOC_HOOK_DECLARE |
Declare the dynamic allocation hooks.
◆ local_addr_
The documentation for this class was generated from the following files: