|
| OpenImpl (Ctx< File > f, Arg< std::string > url, Arg< OpenFlags::Flags > flags, Arg< Access::Mode > mode=Access::None) |
| Constructor (.
|
|
template<bool from> |
| OpenImpl (OpenImpl< from > &&open) |
|
template<typename Hdlr > |
OpenImpl< true > | operator>> (Hdlr &&hdlr) |
|
std::string | ToString () |
|
| FileOperation (Ctx< File > f, Arguments... args) |
|
| FileOperation (FileOperation< OpenImpl, from, Resp< void >, Arguments... > &&op) |
|
virtual | ~FileOperation () |
| Destructor.
|
|
| ConcreteOperation (Args &&... args) |
|
template<bool from> |
| ConcreteOperation (ConcreteOperation< Derived, from, HdlrFactory, Args... > &&op) |
|
template<typename Hdlr > |
Derived< true > | operator>> (Hdlr &&hdlr) |
|
Derived< true > | operator| (Operation< true > &op) |
|
Derived< true > | operator| (Operation< true > &&op) |
|
Derived< true > | operator| (Operation< false > &op) |
|
Derived< true > | operator| (Operation< false > &&op) |
|
Derived< true > | operator| (FinalOperation &&fo) |
| Adds a final operation to the pipeline.
|
|
Operation< HasHndl > * | Move () |
|
Operation< true > * | ToHandled () |
|
Derived< HasHndl > | Timeout (uint16_t timeout) |
| Set operation timeout.
|
|
| Operation () |
| Constructor.
|
|
template<bool from> |
| Operation (Operation< from > &&op) |
| Move constructor between template instances.
|
|
virtual | ~Operation () |
| Destructor.
|
|
virtual std::string | ToString ()=0 |
| Name of the operation.
|
|
virtual Operation< HasHndl > * | Move ()=0 |
|
virtual Operation< true > * | ToHandled ()=0 |
|
|
static void | AllocHandler (ConcreteOperation< Derived, true, HdlrFactory, Args... > &me) |
|
static void | AllocHandler (ConcreteOperation< Derived, false, HdlrFactory, Args... > &me) |
|
static Derived< true > | PipeImpl (ConcreteOperation< Derived, HasHndl, HdlrFactory, Args... > &me, Operation< true > &op) |
|
static Derived< true > | PipeImpl (ConcreteOperation< Derived, HasHndl, HdlrFactory, Args... > &me, Operation< false > &op) |
|
Ctx< File > | file |
| The file object itself.
|
|
std::tuple< Args... > | args |
| Operation arguments.
|
|
uint16_t | timeout |
| Operation timeout.
|
|
std::unique_ptr< PipelineHandler > | handler |
| Operation handler.
|
|
bool | valid |
| Flag indicating if it is a valid object.
|
|
template<bool HasHndl>
class XrdCl::OpenImpl< HasHndl >
Open operation (.
- See also
- FileOperation)