Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a070655

Browse files
nivi-applebzbarsky-apple
andauthoredAug 22, 2024
Apply suggestions from code review
Co-authored-by: Boris Zbarsky <bzbarsky@apple.com>
1 parent bfba54f commit a070655

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed
 

‎src/protocols/bdx/AsyncTransferFacilitator.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ void AsyncTransferFacilitator::Reset()
3434

3535
CHIP_ERROR AsyncTransferFacilitator::SendMessage(TransferSession::OutputEvent & event)
3636
{
37-
3837
VerifyOrReturnError(mExchange, CHIP_ERROR_INCORRECT_STATE);
3938

4039
Messaging::SendFlags sendFlags;

‎src/protocols/bdx/AsyncTransferFacilitator.h

+5-9
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,9 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
5151
virtual void HandleTransferSessionOutput(TransferSession::OutputEvent & event) = 0;
5252

5353
/**
54-
* This method should be implemented to clean up and destroy the instance of the sub class
55-
* implemeting it and the base class.
56-
*
57-
* Note: After this method has been called, we can't use the instance of the subclass that
58-
* implements this.
54+
* This method should be implemented to destroy the object subclassing AsyncTransferFacilitator.
5955
*/
60-
virtual void CleanUp() = 0;
56+
virtual void DestroySelf() = 0;
6157

6258
protected:
6359
CHIP_ERROR OnMessageReceived(Messaging::ExchangeContext * ec, const PayloadHeader & payloadHeader,
@@ -67,7 +63,7 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
6763

6864
CHIP_ERROR SendMessage(TransferSession::OutputEvent & event);
6965

70-
// The transfer session coresponding to this AsynTransferFacilitator object.
66+
// The transfer session coresponding to this AsyncTransferFacilitator object.
7167
TransferSession mTransfer;
7268

7369
// The Exchange holder that holds the exchange context used for BDX messages.
@@ -84,10 +80,10 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
8480
/**
8581
* An AsyncTransferFacilitator that is initialized to respond to an incoming BDX transfer request.
8682
*
87-
* Provides a method for initializing the TransferSession member but still needs to be extended to implement
83+
* Provides a method for initializing the TransferSession members but still needs to be extended to implement
8884
* HandleTransferSessionOutput.
8985
*
90-
* This class, or a subclass of it, should be used as the exchange delegate for a BDX transfer.
86+
* An instance of some subclass of this class, should be used as the exchange delegate for a BDX transfer.
9187
*/
9288
class AsyncResponder : public AsyncTransferFacilitator
9389
{

0 commit comments

Comments
 (0)
Please sign in to comment.