@@ -51,13 +51,9 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
51
51
virtual void HandleTransferSessionOutput (TransferSession::OutputEvent & event) = 0;
52
52
53
53
/* *
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.
59
55
*/
60
- virtual void CleanUp () = 0;
56
+ virtual void DestroySelf () = 0;
61
57
62
58
protected:
63
59
CHIP_ERROR OnMessageReceived (Messaging::ExchangeContext * ec, const PayloadHeader & payloadHeader,
@@ -67,7 +63,7 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
67
63
68
64
CHIP_ERROR SendMessage (TransferSession::OutputEvent & event);
69
65
70
- // The transfer session coresponding to this AsynTransferFacilitator object.
66
+ // The transfer session coresponding to this AsyncTransferFacilitator object.
71
67
TransferSession mTransfer ;
72
68
73
69
// The Exchange holder that holds the exchange context used for BDX messages.
@@ -84,10 +80,10 @@ class AsyncTransferFacilitator : public Messaging::ExchangeDelegate
84
80
/* *
85
81
* An AsyncTransferFacilitator that is initialized to respond to an incoming BDX transfer request.
86
82
*
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
88
84
* HandleTransferSessionOutput.
89
85
*
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.
91
87
*/
92
88
class AsyncResponder : public AsyncTransferFacilitator
93
89
{
0 commit comments