Skip to content

Commit

Permalink
[XrdCl] Update plug-in interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichal committed Jun 19, 2020
1 parent 5980a61 commit f81c945
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/XrdCl/XrdClPlugInInterface.hh
Expand Up @@ -76,7 +76,6 @@ namespace XrdCl
return XRootDStatus( stError, errNotImplemented );
}


//------------------------------------------------------------------------
//! @see XrdCl::File::Read
//------------------------------------------------------------------------
Expand All @@ -90,6 +89,20 @@ namespace XrdCl
return XRootDStatus( stError, errNotImplemented );
}

//------------------------------------------------------------------------
//! @see XrdCl::File::Read
//------------------------------------------------------------------------
virtual XRootDStatus Read( uint64_t offset,
uint32_t size,
Optional<uint64_t> fdoff,
int fd,
ResponseHandler *handler,
uint16_t timeout = 0 )
{
(void)offset; (void)size; (void)fdoff; (void)fd, (void)handler; (void)timeout;
return XRootDStatus( stError, errNotImplemented );
}

//------------------------------------------------------------------------
//! @see XrdCl:File PgRead
//------------------------------------------------------------------------
Expand Down

0 comments on commit f81c945

Please sign in to comment.