Skip to content

Commit

Permalink
1、完善代码
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyJingFish committed Jul 11, 2024
1 parent 79628d8 commit 47cb626
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface BasePointCutSuspend<T : Annotation>:BasePointCut<T> {
* 使用自定义注解的被 suspend 修饰的方法被调用时回调这个方法,不会回调 [invoke]
* @param joinPoint 切点相关信息
* @param anno 切点设置的注解
* @return [wiki 文档返回值说明](https://github.com/FlyJingFish/AndroidAOP/wiki/%E5%88%87%E7%82%B9%E6%96%B9%E6%B3%95%E8%BF%94%E5%9B%9E%E5%80%BC)
*/
suspend fun invokeSuspend(joinPoint: ProceedJoinPointSuspend, anno: T)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ interface MatchClassMethodSuspend : MatchClassMethod {
* 匹配到的被 suspend 修饰的方法被调用时将会回调这个方法,不会回调 [invoke]
* @param joinPoint 切点相关信息
* @param methodName 匹配的方法名,如果是 Lambda 表达式,请看 wiki 文档
* @return [wiki 文档返回值说明](https://github.com/FlyJingFish/AndroidAOP/wiki/%E5%88%87%E7%82%B9%E6%96%B9%E6%B3%95%E8%BF%94%E5%9B%9E%E5%80%BC)
*/
suspend fun invokeSuspend(joinPoint: ProceedJoinPointSuspend, methodName: String)

Expand Down

0 comments on commit 47cb626

Please sign in to comment.