actor-framework / actor-framework/incubator

Add application base-class

Abierto
#78 0 comentarios 0 reacciones 0 asignados Ver en GitHub
improvement
Lenguaje dominante
C++
Estrellas
7
Forks
2
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

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.

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.