美文网首页
Orleans_FrontendServer

Orleans_FrontendServer

作者: FiliChen | 来源:发表于2019-12-16 16:44 被阅读0次

    1. Frontend的作用

    Orleans是通过Frontend而不是直接与Client进行交互,Frontend一般具有以下功能:

    • 接收请求(Receives a request);
    • 处理认证(Performs necessary authentication and authorization validation);
    • 分配任务(Decides which grain(s) should process the request);
    • 与Orleans交互(Uses Grain Client to make one or more method call to the grain(s));
    • 接收Orleans的处理结果(Handles successful completion or failures of the grain calls and any returned values);
    • 通知Client处理结果(Sends a response for the request);

    2. Frontend与Orleans的关系

    Frontend与Orleans的关系

    相关文章

      网友评论

          本文标题:Orleans_FrontendServer

          本文链接:https://www.haomeiwen.com/subject/mrydnctx.html