XRootD
XrdCl::PageInfoImpl Struct Reference
+ Collaboration diagram for XrdCl::PageInfoImpl:

Public Member Functions

 PageInfoImpl (PageInfoImpl &&pginf)
 
 PageInfoImpl (uint64_t offset=0, uint32_t length=0, void *buffer=0, std::vector< uint32_t > &&cksums=std::vector< uint32_t >())
 

Public Attributes

void * buffer
 
std::vector< uint32_t > cksums
 
uint32_t length
 
size_t nbrepair
 
uint64_t offset
 

Detailed Description

Definition at line 594 of file XrdClXRootDResponses.cc.

Constructor & Destructor Documentation

◆ PageInfoImpl() [1/2]

XrdCl::PageInfoImpl::PageInfoImpl ( uint64_t  offset = 0,
uint32_t  length = 0,
void *  buffer = 0,
std::vector< uint32_t > &&  cksums = std::vector<uint32_t>() 
)
inline

Definition at line 596 of file XrdClXRootDResponses.cc.

597  :
598  offset( offset ),
599  length( length ),
600  buffer( buffer ),
601  cksums( std::move( cksums ) ),
602  nbrepair( 0 )
603  {
604  }
std::vector< uint32_t > cksums

◆ PageInfoImpl() [2/2]

XrdCl::PageInfoImpl::PageInfoImpl ( PageInfoImpl &&  pginf)
inline

Definition at line 606 of file XrdClXRootDResponses.cc.

606  : offset( pginf.offset ),
607  length( pginf.length ),
608  buffer( pginf.buffer ),
609  cksums( std::move( pginf.cksums ) ),
610  nbrepair( pginf.nbrepair )
611  {
612  }

Member Data Documentation

◆ buffer

void* XrdCl::PageInfoImpl::buffer

Definition at line 616 of file XrdClXRootDResponses.cc.

◆ cksums

std::vector<uint32_t> XrdCl::PageInfoImpl::cksums

Definition at line 617 of file XrdClXRootDResponses.cc.

◆ length

uint32_t XrdCl::PageInfoImpl::length

Definition at line 615 of file XrdClXRootDResponses.cc.

◆ nbrepair

size_t XrdCl::PageInfoImpl::nbrepair

Definition at line 618 of file XrdClXRootDResponses.cc.

◆ offset

uint64_t XrdCl::PageInfoImpl::offset

Definition at line 614 of file XrdClXRootDResponses.cc.


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