[*] Another runtime update

This commit is contained in:
Reece Wilson 2023-10-16 01:54:34 +01:00
parent ae885c3784
commit eb042e5a29
2 changed files with 6 additions and 0 deletions

View File

@ -171,6 +171,11 @@ void AuRPCPipe::OnPipeFailureEvent()
this->OnFatalError();
}
void AuRPCPipe::OnPipeReallocEvent(bool bSuccess)
{
}
// IIOBufferedStreamAvailable
bool AuRPCPipe::OnDataAvailable(AuByteBuffer& view)
{

View File

@ -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;