Annotation on method is removed by Kilim Weaver
See original GitHub issuei have annotations on class name and method also , after kilim weaver only annotation on class is keeped , but annotation on method is gone .
` @RpcService(value = “javasvr_ckv_cdb”, modid = 670209, cmdid = 232072, routeIp = “”) public interface CkvCdbChain {
@RpcCmd(value = "Add", retry = 2, timeout = 400)
EduCkvChainMsg.AddRsp addEntry(EduCkvChainMsg.AddReq addReq)throws Pausable,APIException;
@RpcCmd(value = "Del", retry = 2, timeout = 400)
EduCkvChainMsg.DelRsp delEntry(EduCkvChainMsg.DelReq delReqReq)throws Pausable,APIException;
@RpcCmd(value = "GetOne", retry = 2, timeout = 400)
EduCkvChainMsg.GetOneRsp getOne(EduCkvChainMsg.GetOneReq getOneReq)throws Pausable,APIException;
@RpcCmd(value = "Mod", retry = 2, timeout = 400)
EduCkvChainMsg.ModRsp modEnry(EduCkvChainMsg.ModReq modReq)throws Pausable,APIException;
@RpcCmd(value = "GetList", retry = 2, timeout = 400)
EduCkvChainMsg.GetListRsp getList(EduCkvChainMsg.GetListReq getListReq)throws Pausable,APIException;
@RpcCmd(value = "MultiGetList", retry = 2, timeout = 400)
EduCkvChainMsg.MultiGetListRsp multiGetList(EduCkvChainMsg.MultiGetListReq multiGetListReq) throws Pausable, APIException;
@RpcCmd(value = "GetReverseList", retry = 2, timeout = 400)
EduCkvChainMsg.GetReverseListRsp getReverseList(EduCkvChainMsg.GetReverseListReq getReverseListReq) throws Pausable,APIException;
} `
need help here , tks advance . 😃
Issue Analytics
- State:
- Created 6 years ago
- Comments:9
Top Results From Across the Web
Kilim: Isolation-Typed Actors for Java - Sriram Srinivasan
Kilim's weaver transforms methods identified by an @pausable annotation into continuation passing style (CPS) to provide cooperatively-scheduled lightweight ...
Read more >A Nomad's Art: Kilims of Anatolia
It is possible that our enduring fascination with kilims may be rooted in a phenomenon not normally associated with art in traditional societies:...
Read more >Kilim: A server framework with lightweight actors, isolation ...
The annotation is similar in spirit to checked exceptions in that all callers and overriding methods must be marked @pausable as well. The...
Read more >Analysis of the Hand-made Carpet and Kilim Sector in Turkey
Realizing this potential requires the craft of carpet weaving to be kept alive, further developed, and popularized. The art of Turkish ...
Read more >Weaving Techniques | The Source for Vintage Rugs, Tribal ...
This is the most common weaving technique used to create geometric and diagonal patterned kilims. The slit refers to the gap left between...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
we’re working fine under current version cause we are still using jdk7 , so it is a low priority . tks !😄
our team use this [https://github.com/kilim/kilim/](sriram’s original Kilim) and some modify have been made . But i have checked the
MethodWeaver.class
,our version is the same with srisam’s master , i didn’t modify it , I’ve made a compare with your version [https://github.com/nqzero/kilim](nqzero kilim) , there’s lots of changes , i think before we use kilim 2.0 , we would have to run a solid tests . so it’s better to apply this modify first . tks for you help ! i hope our team could move to the kilim 2.0 as soon as possible.