fw4spl
fwCom::Slot< std::function< R(A...) > > Class Template Reference
+ Inheritance diagram for fwCom::Slot< std::function< R(A...) > >:
+ Collaboration diagram for fwCom::Slot< std::function< R(A...) > >:

Public Types

typedef R SignatureType(A...)
 
typedef std::function< SignatureType > FunctionType
 
- Public Types inherited from fwCom::Slot< R(A...) >
typedef R SignatureType(A...)
 
typedef Slot< SignatureType > SelfType
 
typedef std::shared_ptr< SelfTypesptr
 
typedef std::weak_ptr< SelfTypewptr
 
- Public Types inherited from fwCom::SlotCall< R(A...) >
typedef R SignatureType(A...)
 
typedef SlotCall< SignatureType > SelfType
 
typedef std::shared_ptr< SelfTypesptr
 
typedef std::weak_ptr< SelfTypewptr
 
typedef std::shared_future< R > SharedFutureType
 
- Public Types inherited from fwCom::SlotRun< void(A...) >
typedef void SignatureType(A...)
 
typedef SlotRun< SignatureType > SelfType
 
typedef std::shared_ptr< SelfTypesptr
 
typedef std::weak_ptr< SelfTypewptr
 
- Public Types inherited from fwCom::SlotBase
typedef std::shared_future< void > VoidSharedFutureType
 SlotBase::asyncRun return type.
 
typedef std::set< std::shared_ptr< const SlotConnectionBase > > ConnectionSetType
 Connections container type.
 
typedef std::shared_ptr< SlotBasesptr
 
typedef std::weak_ptr< SlotBasewptr
 
typedef std::shared_ptr< SlotBase const > csptr
 
typedef std::weak_ptr< SlotBase const > cwptr
 
typedef std::string IDType
 

Public Member Functions

template<typename FUNCTOR >
 Slot (FUNCTOR f)
 
virtual void run (A...a) const
 Run the Slot with the given parameters.
 
virtual R call (A...a) const
 Call the Slot with the given parameters.
 
- Public Member Functions inherited from fwCom::SlotCall< R(A...) >
virtual SharedFutureType asyncCall (const std::shared_ptr< ::fwThread::Worker > &worker, A...args) const
 Call the Slot with the given parameters asynchronously. More...
 
virtual SharedFutureType asyncCall (A...args) const
 Call the Slot with the given parameters asynchronously. The execution of this slot will occur on it's own worker. More...
 
template<typename WEAKCALL >
std::shared_future< R > postWeakCall (const ::fwThread::Worker::sptr &worker, WEAKCALL f)
 
- Public Member Functions inherited from fwCom::SlotRun< void(A...) >
virtual SlotBase::VoidSharedFutureType asyncRun (const std::shared_ptr< ::fwThread::Worker > &worker, A...args) const
 Run the Slot with the given parameters asynchronously. More...
 
virtual SlotBase::VoidSharedFutureType asyncRun (A...args) const
 Run the Slot with the given parameters asynchronously. The execution of this slot will occur on it's own worker. More...
 
template<typename R , typename WEAKCALL >
std::shared_future< R > postWeakCall (const ::fwThread::Worker::sptr &worker, WEAKCALL f)
 
- Public Member Functions inherited from fwCom::SlotBase
unsigned int arity () const
 Returns Slot's arity. The arity defines the number of parameters in Slot signature.
 
void setWorker (const std::shared_ptr< ::fwThread::Worker > &worker)
 Sets Slot's Worker.
 
std::shared_ptr< ::fwThread::WorkergetWorker () const
 Returns Slot's Worker.
 
size_t getNumberOfConnections () const
 Returns number of connections.
 
template<typename A1 , typename A2 , typename A3 >
void run (A1 a1, A2 a2, A3 a3) const
 
template<typename A1 , typename A2 >
void run (A1 a1, A2 a2) const
 
template<typename A1 >
void run (A1 a1) const
 
FWCOM_API void run () const
 
template<typename R , typename A1 , typename A2 , typename A3 >
call (A1 a1, A2 a2, A3 a3) const
 
template<typename R , typename A1 , typename A2 >
call (A1 a1, A2 a2) const
 
template<typename R , typename A1 >
call (A1 a1) const
 
template<typename R >
call () const
 
template<typename A1 , typename A2 , typename A3 >
VoidSharedFutureType asyncRun (A1 a1, A2 a2, A3 a3) const
 
template<typename A1 , typename A2 >
VoidSharedFutureType asyncRun (A1 a1, A2 a2) const
 
template<typename A1 >
VoidSharedFutureType asyncRun (A1 a1) const
 
FWCOM_API VoidSharedFutureType asyncRun () const
 
template<typename R , typename A1 , typename A2 , typename A3 >
std::shared_future< R > asyncCall (A1 a1, A2 a2, A3 a3) const
 
template<typename R , typename A1 , typename A2 >
std::shared_future< R > asyncCall (A1 a1, A2 a2) const
 
template<typename R , typename A1 >
std::shared_future< R > asyncCall (A1 a1) const
 
template<typename R >
std::shared_future< R > asyncCall () const
 
- Public Member Functions inherited from fwCore::BaseObject
virtual bool isA (const std::string &type) const
 
virtual const std::string & getLeafClassname () const
 return object's classname without its namespace, i.e. BaseObject
 
virtual const std::string & getClassname () const
 return full object's classname with its namespace, i.e. fwCore::BaseObject
 

Protected Attributes

FunctionType m_func
 
- Protected Attributes inherited from fwCom::SlotBase
std::string m_signature
 Slot's signature based on typeid.
 
const unsigned int m_arity
 Slot's arity.
 
std::shared_ptr< ::fwThread::Workerm_worker
 Slot's Worker.
 
ConnectionSetType m_connections
 Container of current connections.
 
mutable::fwCore::mt::ReadWriteMutex m_connectionsMutex
 
mutable::fwCore::mt::ReadWriteMutex m_workerMutex
 

Additional Inherited Members

- Static Public Member Functions inherited from fwCom::Slot< R(A...) >
template<typename F >
static std::shared_ptr< Slot< R(A...) > > New (F f)
 
template<typename F , typename O >
static std::shared_ptr< Slot< R(A...) > > New (F f, O o)
 
- Static Public Member Functions inherited from fwCore::BaseObject
static bool isTypeOf (const std::string &type)
 
static const std::string & leafClassname ()
 return object's classname without its namespace, i.e. BaseObject
 
static const std::string & classname ()
 return object's classname without its namespace, i.e. BaseObject
 
- Protected Member Functions inherited from fwCom::SlotCall< R(A...) >
virtual std::function< R() > bindCall (A...args) const
 Binds the given parameters to the call method within a R() function. More...
 
- Protected Member Functions inherited from fwCom::SlotRun< void(A...) >
virtual std::function< void() > bindRun (A...args) const
 Binds the given parameters to the run method within a void() function. More...
 
- Protected Member Functions inherited from fwCom::SlotBase
 SlotBase (const SlotBase &)
 Copy constructor forbidden.
 
SlotBaseoperator= (const SlotBase &)
 Copy operator forbidden.
 
template<typename F >
std::string getTypeName () const
 Returns F typeid name.
 
 SlotBase (unsigned int arity)
 
- Static Protected Member Functions inherited from fwCom::SlotCall< R(A...) >
template<typename WEAKCALL >
static std::shared_future< R > postWeakCall (const std::shared_ptr< ::fwThread::Worker > &worker, WEAKCALL f)
 
- Static Protected Member Functions inherited from fwCom::SlotRun< void(A...) >
template<typename R , typename WEAKCALL >
static std::shared_future< R > postWeakCall (const std::shared_ptr< ::fwThread::Worker > &worker, WEAKCALL f)
 

Detailed Description

template<typename R, typename... A>
class fwCom::Slot< std::function< R(A...) > >

Definition at line 43 of file Slot.hpp.


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