#include <XrdClOperationHandlers.hh>
Factory class, overloads Resp for void type
Definition at line 720 of file XrdClOperationHandlers.hh.
◆ Create() [1/3]
A factory method
- Parameters
-
func | : the function/functor/lambda that should be wrapped |
- Returns
- : SimpleFunctionWrapper instance
Definition at line 728 of file XrdClOperationHandlers.hh.
730 return new FunctionWrapper<void>( func );
◆ Create() [2/3]
A factory method
- Parameters
-
func | : the function/functor/lambda that should be wrapped |
- Returns
- : SimpleFunctionWrapper instance
Definition at line 739 of file XrdClOperationHandlers.hh.
741 return new FunctionWrapper<void>( func );
◆ Create() [3/3]
template<typename Return >
A factory method
- Parameters
-
task | : the task that should be wrapped |
- Returns
- : TaskWrapper instance
Definition at line 751 of file XrdClOperationHandlers.hh.
753 return new TaskWrapper<void, Return>( std::move( task ) );
The documentation for this struct was generated from the following file: