书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 73 个相关结果.
  • 模型和定制

    992 2019-06-25 《Riker - Rust框架》
    模型和定制 Model Trait 默认模型 自定义模型 模型和定制 Riker需要Model来设置整个系统中使用的消息类型,并指定提供核心服务的模块。 Model是一个可以在Rust类型上实现的特性,然后用于创建ActorSystem。 Model Trait 让我们来看看Model特征: pub trait Model : ...
  • FAQ

    990 2019-06-25 《Riker Document》
    FAQ FAQ What is Riker's goal? Riker's principle goal is to be a framework to make concurrent, resilient software development easy and to make the Actor Model applicable to a ...
  • Logging

    511 2019-06-25 《Riker Document》
    Logging Base log level Default logger Logging Riker provides logging out of the box which is built on top of the Log crate logging facade. The logger module starts during th...
  • Actor

    2143 2019-06-25 《Riker - Rust框架》
    Actor 定义Actor 创建Actor Actor References 发送消息 示例 Actor Actor模型是处理并发计算的概念模型。 Riker框架的核心是四个主要组件: ActorSystem - 每个Riker应用程序有一个管理actor生命周期的ActorSystem Actor - 实现Actor特征的Rust...
  • Hisense

    Hisense Hacks From: eLinux.org Hisense US Digital (USDTV http://usdtv.com/ ) sold an HDTVReceiver called the DB-2010 manufactured by HiSense. The unit runs anembedded ...
  • findOneAndUpdate

    How to Use findOneAndUpdate() in Mongoose Getting Started Atomic Updates Upsert The `rawResult` Option How to Use findOneAndUpdate() in Mongoose The findOneAndUpdate() ...
  • findOneAndUpdate

    How to Use findOneAndUpdate() in Mongoose Getting Started Atomic Updates Upsert The `rawResult` Option How to Use findOneAndUpdate() in Mongoose Sponsor #native_company# ...
  • Fault Tolerence

    688 2019-06-25 《Riker Document》
    Fault Tolerence Mailboxes Restart Strategy Escalate Strategy Stop Strategy Dead letters Supervisor Design Fault Tolerence Riker applications exhibit fault tolerent behavi...
  • Persisting State

    566 2019-06-25 《Riker Document》
    Persisting State Event Sourcing Enabling Persistence Persisting Events Replaying Events Event Store CQRS Persisting State Riker supports persistence so that actors can re...
  • 日志

    806 2019-06-25 《Riker - Rust框架》
    日志 基本日志级别 默认日志 日志 Riker提供开箱即用的日志记录,它构建在Log crate日志记录外观之上。 记录器模块在actor系统启动期间启动,制作日志宏,例如info!,debug!,错误! 在ActorSystem :: new之后立即可用: #[macro_use] extern crate log ; let ...