wrench::StorageServiceFileCopyAnswerMessage
-
class StorageServiceFileCopyAnswerMessage : public wrench::StorageServiceMessage
A message sent by a StorageService in answer to a file copy request.
Public Functions
Constructor.
- Parameters:
src – the source location
dst – the destination location
success – true on success, false otherwise
failure_cause – the cause of a failure (nullptr if success==true)
payload – the message size in bytes
Public Members
-
std::shared_ptr<FileLocation> dst
The destination location.
-
std::shared_ptr<FailureCause> failure_cause
The cause of the failure, or nullptr if success.
-
std::shared_ptr<FileLocation> src
The source location.
-
bool success
Whether the copy was successful.