You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 18, 2021. It is now read-only.
is required to obtain Goro instance from GoroService, which, in fact, was plugged in using GoroService.setup method.
But BoundGoro should send tasks to the GoroService, instead.
P.S. Currently, the only purpose of GoroService is to keep application alive, because it does not provide any IPC functions - it operates on the same Goro which was provided during setup.
Current
Goroimplementation heavily relies on the fact thatGoroServiceis in the same process.The check here:
https://github.com/stanfy/goro/blob/v3.0.0-RC3/goro/src/main/java/com/stanfy/enroscar/goro/Goro.java#L26
which is invoked here:
https://github.com/stanfy/goro/blob/v3.0.0-RC3/goro/src/main/java/com/stanfy/enroscar/goro/BoundGoro.java#L61
is required to obtain
Goroinstance fromGoroService, which, in fact, was plugged in usingGoroService.setupmethod.But
BoundGoroshould send tasks to theGoroService, instead.P.S. Currently, the only purpose of
GoroServiceis to keep application alive, because it does not provide any IPC functions - it operates on the sameGorowhich was provided during setup.