|
C++ Actor Framework 1.0.0
|
An acceptor manager configures an acceptor and provides callbacks for incoming connections as well as for error handling. More...
#include <acceptor_manager.hpp>
Public Member Functions | |
| virtual bool | new_connection ()=0 |
| Called by the underlying I/O device to indicate that a new connection is awaiting acceptance. | |
| virtual uint16_t | port () const =0 |
| Get the port of the underlying I/O device. | |
| virtual std::string | addr () const =0 |
| Get the port of the underlying I/O device. | |
Public Member Functions inherited from caf::io::network::manager | |
| void | set_parent (abstract_broker *ptr) |
| Sets the parent for this manager. | |
| abstract_broker * | parent () |
| Returns the parent broker of this manager. | |
| bool | detached () const |
Returns true if this manager has a parent, false otherwise. | |
| virtual void | detach_from (abstract_broker *ptr)=0 |
Detach this manager from its parent and invoke detach_message() / ifinvoke_detach_message == true`. | |
Public Member Functions inherited from caf::detail::atomic_ref_counted | |
| atomic_ref_counted (const atomic_ref_counted &) | |
| atomic_ref_counted & | operator= (const atomic_ref_counted &) |
| void | ref () const noexcept |
| Increases reference count by one. | |
| void | deref () const noexcept |
Decreases reference count by one and calls request_deletion when it drops to zero. | |
| bool | unique () const noexcept |
| Queries whether there is exactly one reference. | |
| size_t | get_reference_count () const noexcept |
| Queries the current reference count for this object. | |
Additional Inherited Members | |
Public Types inherited from caf::ref_counted | |
| using | super = detail::atomic_ref_counted |
Public Attributes inherited from caf::io::network::manager | |
| strong_actor_ptr | parent_ |
Protected Attributes inherited from caf::detail::atomic_ref_counted | |
| std::atomic< size_t > | rc_ |
Related Symbols inherited from caf::ref_counted | |
| template<class T , class... Ts> | |
| intrusive_cow_ptr< T > | make_copy_on_write (Ts &&... xs) |
Constructs an object of type T in an intrusive_cow_ptr. | |
| template<class T , class... Ts> | |
| intrusive_ptr< T > | make_counted (Ts &&... xs) |
Constructs an object of type T in an intrusive_ptr. | |
An acceptor manager configures an acceptor and provides callbacks for incoming connections as well as for error handling.
|
pure virtual |
Called by the underlying I/O device to indicate that a new connection is awaiting acceptance.
true if the manager accepts further connections, otherwise false.