actor-framework / actor-framework/incubator

Add application base-class

オープン
#78 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
improvement
主要言語
C++
スター
7
フォーク
2
PR マージ指標
30日以内にマージされた PR はありません

説明

Implementing Application protocols currently requires a lot of boilerplate code that is identical across all application protocols. The stacking approach requires dispatching functions to the following layers even if the function is not needed for the application itself. This leads to a lot of code similar to:
```
void some_func(Args args) {
next_layer_.some_func(args);
}
```
We should think about providing an `application_base`, that implements a default implementation for this. In the case that future applications require a different behaviour, these functions could simply be overridden.

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。