Realistic 3D camera system
3D camera system components
Classes | Public Types | Public Member Functions | List of all members
asio::detail::reactive_socket_service< Protocol > Class Template Reference

#include <reactive_socket_service.hpp>

Inheritance diagram for asio::detail::reactive_socket_service< Protocol >:
asio::detail::reactive_socket_service_base

Classes

struct  implementation_type
 

Public Types

typedef Protocol protocol_type
 
typedef Protocol::endpoint endpoint_type
 
typedef socket_type native_handle_type
 
- Public Types inherited from asio::detail::reactive_socket_service_base
typedef socket_type native_handle_type
 

Public Member Functions

 reactive_socket_service (asio::io_service &io_service)
 
void move_construct (implementation_type &impl, implementation_type &other_impl)
 
void move_assign (implementation_type &impl, reactive_socket_service_base &other_service, implementation_type &other_impl)
 
template<typename Protocol1 >
void converting_move_construct (implementation_type &impl, typename reactive_socket_service< Protocol1 >::implementation_type &other_impl)
 
asio::error_code open (implementation_type &impl, const protocol_type &protocol, asio::error_code &ec)
 
asio::error_code assign (implementation_type &impl, const protocol_type &protocol, const native_handle_type &native_socket, asio::error_code &ec)
 
native_handle_type native_handle (implementation_type &impl)
 
asio::error_code bind (implementation_type &impl, const endpoint_type &endpoint, asio::error_code &ec)
 
template<typename Option >
asio::error_code set_option (implementation_type &impl, const Option &option, asio::error_code &ec)
 
template<typename Option >
asio::error_code get_option (const implementation_type &impl, Option &option, asio::error_code &ec) const
 
endpoint_type local_endpoint (const implementation_type &impl, asio::error_code &ec) const
 
endpoint_type remote_endpoint (const implementation_type &impl, asio::error_code &ec) const
 
template<typename ConstBufferSequence >
size_t send_to (implementation_type &impl, const ConstBufferSequence &buffers, const endpoint_type &destination, socket_base::message_flags flags, asio::error_code &ec)
 
size_t send_to (implementation_type &impl, const null_buffers &, const endpoint_type &, socket_base::message_flags, asio::error_code &ec)
 
template<typename ConstBufferSequence , typename Handler >
void async_send_to (implementation_type &impl, const ConstBufferSequence &buffers, const endpoint_type &destination, socket_base::message_flags flags, Handler &handler)
 
template<typename Handler >
void async_send_to (implementation_type &impl, const null_buffers &, const endpoint_type &, socket_base::message_flags, Handler &handler)
 
template<typename MutableBufferSequence >
size_t receive_from (implementation_type &impl, const MutableBufferSequence &buffers, endpoint_type &sender_endpoint, socket_base::message_flags flags, asio::error_code &ec)
 
size_t receive_from (implementation_type &impl, const null_buffers &, endpoint_type &sender_endpoint, socket_base::message_flags, asio::error_code &ec)
 
template<typename MutableBufferSequence , typename Handler >
void async_receive_from (implementation_type &impl, const MutableBufferSequence &buffers, endpoint_type &sender_endpoint, socket_base::message_flags flags, Handler &handler)
 
template<typename Handler >
void async_receive_from (implementation_type &impl, const null_buffers &, endpoint_type &sender_endpoint, socket_base::message_flags flags, Handler &handler)
 
template<typename Socket >
asio::error_code accept (implementation_type &impl, Socket &peer, endpoint_type *peer_endpoint, asio::error_code &ec)
 
template<typename Socket , typename Handler >
void async_accept (implementation_type &impl, Socket &peer, endpoint_type *peer_endpoint, Handler &handler)
 
asio::error_code connect (implementation_type &impl, const endpoint_type &peer_endpoint, asio::error_code &ec)
 
template<typename Handler >
void async_connect (implementation_type &impl, const endpoint_type &peer_endpoint, Handler &handler)
 
- Public Member Functions inherited from asio::detail::reactive_socket_service_base
ASIO_DECL reactive_socket_service_base (asio::io_service &io_service)
 
ASIO_DECL void shutdown_service ()
 
ASIO_DECL void construct (base_implementation_type &impl)
 
ASIO_DECL void base_move_construct (base_implementation_type &impl, base_implementation_type &other_impl)
 
ASIO_DECL void base_move_assign (base_implementation_type &impl, reactive_socket_service_base &other_service, base_implementation_type &other_impl)
 
ASIO_DECL void destroy (base_implementation_type &impl)
 
bool is_open (const base_implementation_type &impl) const
 
ASIO_DECL asio::error_code close (base_implementation_type &impl, asio::error_code &ec)
 
native_handle_type native_handle (base_implementation_type &impl)
 
ASIO_DECL asio::error_code cancel (base_implementation_type &impl, asio::error_code &ec)
 
bool at_mark (const base_implementation_type &impl, asio::error_code &ec) const
 
std::size_t available (const base_implementation_type &impl, asio::error_code &ec) const
 
asio::error_code listen (base_implementation_type &impl, int backlog, asio::error_code &ec)
 
template<typename IO_Control_Command >
asio::error_code io_control (base_implementation_type &impl, IO_Control_Command &command, asio::error_code &ec)
 
bool non_blocking (const base_implementation_type &impl) const
 
asio::error_code non_blocking (base_implementation_type &impl, bool mode, asio::error_code &ec)
 
bool native_non_blocking (const base_implementation_type &impl) const
 
asio::error_code native_non_blocking (base_implementation_type &impl, bool mode, asio::error_code &ec)
 
asio::error_code shutdown (base_implementation_type &impl, socket_base::shutdown_type what, asio::error_code &ec)
 
template<typename ConstBufferSequence >
size_t send (base_implementation_type &impl, const ConstBufferSequence &buffers, socket_base::message_flags flags, asio::error_code &ec)
 
size_t send (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, asio::error_code &ec)
 
template<typename ConstBufferSequence , typename Handler >
void async_send (base_implementation_type &impl, const ConstBufferSequence &buffers, socket_base::message_flags flags, Handler &handler)
 
template<typename Handler >
void async_send (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, Handler &handler)
 
template<typename MutableBufferSequence >
size_t receive (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags flags, asio::error_code &ec)
 
size_t receive (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, asio::error_code &ec)
 
template<typename MutableBufferSequence , typename Handler >
void async_receive (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags flags, Handler &handler)
 
template<typename Handler >
void async_receive (base_implementation_type &impl, const null_buffers &, socket_base::message_flags flags, Handler &handler)
 
template<typename MutableBufferSequence >
size_t receive_with_flags (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, asio::error_code &ec)
 
size_t receive_with_flags (base_implementation_type &impl, const null_buffers &, socket_base::message_flags, socket_base::message_flags &out_flags, asio::error_code &ec)
 
template<typename MutableBufferSequence , typename Handler >
void async_receive_with_flags (base_implementation_type &impl, const MutableBufferSequence &buffers, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, Handler &handler)
 
template<typename Handler >
void async_receive_with_flags (base_implementation_type &impl, const null_buffers &, socket_base::message_flags in_flags, socket_base::message_flags &out_flags, Handler &handler)
 

Additional Inherited Members

- Protected Member Functions inherited from asio::detail::reactive_socket_service_base
ASIO_DECL asio::error_code do_open (base_implementation_type &impl, int af, int type, int protocol, asio::error_code &ec)
 
ASIO_DECL asio::error_code do_assign (base_implementation_type &impl, int type, const native_handle_type &native_socket, asio::error_code &ec)
 
ASIO_DECL void start_op (base_implementation_type &impl, int op_type, reactor_op *op, bool is_continuation, bool is_non_blocking, bool noop)
 
ASIO_DECL void start_accept_op (base_implementation_type &impl, reactor_op *op, bool is_continuation, bool peer_is_open)
 
ASIO_DECL void start_connect_op (base_implementation_type &impl, reactor_op *op, bool is_continuation, const socket_addr_type *addr, size_t addrlen)
 
- Protected Attributes inherited from asio::detail::reactive_socket_service_base
reactorreactor_
 

Detailed Description

template<typename Protocol>
class asio::detail::reactive_socket_service< Protocol >

Definition at line 47 of file reactive_socket_service.hpp.

Member Typedef Documentation

template<typename Protocol >
typedef Protocol::endpoint asio::detail::reactive_socket_service< Protocol >::endpoint_type

Definition at line 55 of file reactive_socket_service.hpp.

template<typename Protocol >
typedef socket_type asio::detail::reactive_socket_service< Protocol >::native_handle_type

Definition at line 58 of file reactive_socket_service.hpp.

template<typename Protocol >
typedef Protocol asio::detail::reactive_socket_service< Protocol >::protocol_type

Definition at line 52 of file reactive_socket_service.hpp.

Constructor & Destructor Documentation

template<typename Protocol >
asio::detail::reactive_socket_service< Protocol >::reactive_socket_service ( asio::io_service io_service)
inline

Definition at line 75 of file reactive_socket_service.hpp.

Member Function Documentation

template<typename Protocol >
template<typename Socket >
asio::error_code asio::detail::reactive_socket_service< Protocol >::accept ( implementation_type impl,
Socket &  peer,
endpoint_type peer_endpoint,
asio::error_code ec 
)
inline

Definition at line 368 of file reactive_socket_service.hpp.

template<typename Protocol >
asio::error_code asio::detail::reactive_socket_service< Protocol >::assign ( implementation_type impl,
const protocol_type protocol,
const native_handle_type native_socket,
asio::error_code ec 
)
inline

Definition at line 124 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Socket , typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_accept ( implementation_type impl,
Socket &  peer,
endpoint_type peer_endpoint,
Handler &  handler 
)
inline

Definition at line 398 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_connect ( implementation_type impl,
const endpoint_type peer_endpoint,
Handler &  handler 
)
inline

Definition at line 429 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename MutableBufferSequence , typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_receive_from ( implementation_type impl,
const MutableBufferSequence &  buffers,
endpoint_type sender_endpoint,
socket_base::message_flags  flags,
Handler &  handler 
)
inline

Definition at line 310 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_receive_from ( implementation_type impl,
const null_buffers ,
endpoint_type sender_endpoint,
socket_base::message_flags  flags,
Handler &  handler 
)
inline

Definition at line 339 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename ConstBufferSequence , typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_send_to ( implementation_type impl,
const ConstBufferSequence &  buffers,
const endpoint_type destination,
socket_base::message_flags  flags,
Handler &  handler 
)
inline

Definition at line 226 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Handler >
void asio::detail::reactive_socket_service< Protocol >::async_send_to ( implementation_type impl,
const null_buffers ,
const endpoint_type ,
socket_base::message_flags  ,
Handler &  handler 
)
inline

Definition at line 250 of file reactive_socket_service.hpp.

template<typename Protocol >
asio::error_code asio::detail::reactive_socket_service< Protocol >::bind ( implementation_type impl,
const endpoint_type endpoint,
asio::error_code ec 
)
inline

Definition at line 140 of file reactive_socket_service.hpp.

template<typename Protocol >
asio::error_code asio::detail::reactive_socket_service< Protocol >::connect ( implementation_type impl,
const endpoint_type peer_endpoint,
asio::error_code ec 
)
inline

Definition at line 419 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Protocol1 >
void asio::detail::reactive_socket_service< Protocol >::converting_move_construct ( implementation_type impl,
typename reactive_socket_service< Protocol1 >::implementation_type other_impl 
)
inline

Definition at line 103 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Option >
asio::error_code asio::detail::reactive_socket_service< Protocol >::get_option ( const implementation_type impl,
Option &  option,
asio::error_code ec 
) const
inline

Definition at line 160 of file reactive_socket_service.hpp.

template<typename Protocol >
endpoint_type asio::detail::reactive_socket_service< Protocol >::local_endpoint ( const implementation_type impl,
asio::error_code ec 
) const
inline

Definition at line 173 of file reactive_socket_service.hpp.

template<typename Protocol >
void asio::detail::reactive_socket_service< Protocol >::move_assign ( implementation_type impl,
reactive_socket_service_base other_service,
implementation_type other_impl 
)
inline

Definition at line 91 of file reactive_socket_service.hpp.

template<typename Protocol >
void asio::detail::reactive_socket_service< Protocol >::move_construct ( implementation_type impl,
implementation_type other_impl 
)
inline

Definition at line 81 of file reactive_socket_service.hpp.

template<typename Protocol >
native_handle_type asio::detail::reactive_socket_service< Protocol >::native_handle ( implementation_type impl)
inline

Definition at line 134 of file reactive_socket_service.hpp.

template<typename Protocol >
asio::error_code asio::detail::reactive_socket_service< Protocol >::open ( implementation_type impl,
const protocol_type protocol,
asio::error_code ec 
)
inline

Definition at line 114 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename MutableBufferSequence >
size_t asio::detail::reactive_socket_service< Protocol >::receive_from ( implementation_type impl,
const MutableBufferSequence &  buffers,
endpoint_type sender_endpoint,
socket_base::message_flags  flags,
asio::error_code ec 
)
inline

Definition at line 273 of file reactive_socket_service.hpp.

template<typename Protocol >
size_t asio::detail::reactive_socket_service< Protocol >::receive_from ( implementation_type impl,
const null_buffers ,
endpoint_type sender_endpoint,
socket_base::message_flags  ,
asio::error_code ec 
)
inline

Definition at line 293 of file reactive_socket_service.hpp.

template<typename Protocol >
endpoint_type asio::detail::reactive_socket_service< Protocol >::remote_endpoint ( const implementation_type impl,
asio::error_code ec 
) const
inline

Definition at line 185 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename ConstBufferSequence >
size_t asio::detail::reactive_socket_service< Protocol >::send_to ( implementation_type impl,
const ConstBufferSequence &  buffers,
const endpoint_type destination,
socket_base::message_flags  flags,
asio::error_code ec 
)
inline

Definition at line 200 of file reactive_socket_service.hpp.

template<typename Protocol >
size_t asio::detail::reactive_socket_service< Protocol >::send_to ( implementation_type impl,
const null_buffers ,
const endpoint_type ,
socket_base::message_flags  ,
asio::error_code ec 
)
inline

Definition at line 213 of file reactive_socket_service.hpp.

template<typename Protocol >
template<typename Option >
asio::error_code asio::detail::reactive_socket_service< Protocol >::set_option ( implementation_type impl,
const Option &  option,
asio::error_code ec 
)
inline

Definition at line 149 of file reactive_socket_service.hpp.


The documentation for this class was generated from the following file: