diff --git a/Source/AuRPCPipe.cpp b/Source/AuRPCPipe.cpp index 1f066bb..8ca649c 100644 --- a/Source/AuRPCPipe.cpp +++ b/Source/AuRPCPipe.cpp @@ -171,6 +171,11 @@ void AuRPCPipe::OnPipeFailureEvent() this->OnFatalError(); } +void AuRPCPipe::OnPipeReallocEvent(bool bSuccess) +{ + +} + // IIOBufferedStreamAvailable bool AuRPCPipe::OnDataAvailable(AuByteBuffer& view) { diff --git a/Source/AuRPCPipe.hpp b/Source/AuRPCPipe.hpp index dd7c8a8..a311c5d 100644 --- a/Source/AuRPCPipe.hpp +++ b/Source/AuRPCPipe.hpp @@ -29,6 +29,7 @@ struct AuRPCPipe : AuIO::IIOBufferedStreamAvailable, AuIO::IIOSimpleEventListene void OnPipePartialEvent(AuUInt trasnferred) override; void OnPipeSuccessEvent() override; void OnPipeFailureEvent() override; + void OnPipeReallocEvent(bool bSuccess) override; // IIOBufferedStreamAvailable bool OnDataAvailable(AuByteBuffer& view) override;