-
Hi guys, I may need your help. I have this annotation which has the task of implementing an interface, here is an example: My Custom Annotation:
Interface:
this should be the expected result:
but I get this:
If I remove the suspend modifier from interface, everything works well. Class Processor:
Please, can somebody help me? |
Beta Was this translation helpful? Give feedback.
Answered by
ZacSweers
Oct 14, 2021
Replies: 1 comment
-
You are reading the purely Java view of that API. Suspend functions, at the bytecode level, have a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ZacSweers
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You are reading the purely Java view of that API. Suspend functions, at the bytecode level, have a
Continuation
parameter added to their signature. You will need to exclude this manually.