-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decouple message queues from actors #29
Labels
Comments
ForNeVeR
added a commit
that referenced
this issue
Jun 12, 2019
ForNeVeR
added a commit
that referenced
this issue
Jun 12, 2019
ForNeVeR
added a commit
that referenced
this issue
Jun 12, 2019
ForNeVeR
added a commit
that referenced
this issue
Jun 13, 2019
ForNeVeR
added a commit
that referenced
this issue
Jun 15, 2019
ForNeVeR
added a commit
that referenced
this issue
Jun 15, 2019
2 tasks
ForNeVeR
added a commit
that referenced
this issue
Jun 15, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 7, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 7, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 7, 2019
XMPP connection turned out to work in an asynchronous manner, thus I'm making small part of our stack asynchronous, too, to work around that.
ForNeVeR
added a commit
that referenced
this issue
Jul 7, 2019
XMPP connection turned out to work in an asynchronous manner, thus I'm making small part of our stack asynchronous, too, to work around that.
This was referenced Jul 7, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 8, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 8, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 8, 2019
XMPP connection turned out to work in an asynchronous manner, thus I'm making small part of our stack asynchronous, too, to work around that.
ForNeVeR
added a commit
that referenced
this issue
Jul 8, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 8, 2019
ForNeVeR
added a commit
that referenced
this issue
Jul 10, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This task is a prerequisite for #17.
Currently our Telegram and XMPP actors are sort of message queues themselves, and that creates troubles:
So, I've decided to move the IM to external entities. The architecture will be the following:
This allows the messages to be reliably sent to other end of the pipeline without losing them, actors to be successfully reborn in case of whatever errors cause them to die/recycle, and the IMs to function independently of actor lifecycle.
The text was updated successfully, but these errors were encountered: