File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -226,6 +226,9 @@ where {
226
226
}
227
227
228
228
/// Returns a reference to the LSPS1 client-side handler.
229
+ ///
230
+ /// The returned hendler allows to initiate the LSPS1 client-side flow, i.e., allows to request
231
+ /// channels from the configured LSP.
229
232
pub fn lsps1_client_handler ( & self ) -> Option < & LSPS1ClientHandler < ES > > {
230
233
self . lsps1_client_handler . as_ref ( )
231
234
}
@@ -237,11 +240,17 @@ where {
237
240
}
238
241
239
242
/// Returns a reference to the LSPS2 client-side handler.
243
+ ///
244
+ /// The returned hendler allows to initiate the LSPS2 client-side flow. That is, it allows to
245
+ /// retrieve all necessary data to create 'just-in-time' invoices that, when paid, will have
246
+ /// the configured LSP open a 'just-in-time' channel.
240
247
pub fn lsps2_client_handler ( & self ) -> Option < & LSPS2ClientHandler < ES > > {
241
248
self . lsps2_client_handler . as_ref ( )
242
249
}
243
250
244
251
/// Returns a reference to the LSPS2 server-side handler.
252
+ ///
253
+ /// The returned hendler allows to initiate the LSPS2 service-side flow.
245
254
pub fn lsps2_service_handler ( & self ) -> Option < & LSPS2ServiceHandler < CM > > {
246
255
self . lsps2_service_handler . as_ref ( )
247
256
}
You can’t perform that action at this time.
0 commit comments