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
Because of how The Direct Method handler is implemented, there is no opportunity for asynchrony without blocking concurrent or future direct method requests. Ideally, instead of :
type DirectMethodHandler func(p map[string]interface{}) (map[string]interface{}, error)
It was something like:
type DirectMethodHandler func(input map[string]interface{},completion func(map[string]interface{}, error))
Or something channel based.
The text was updated successfully, but these errors were encountered:
Because of how The Direct Method handler is implemented, there is no opportunity for asynchrony without blocking concurrent or future direct method requests. Ideally, instead of :
It was something like:
Or something channel based.
The text was updated successfully, but these errors were encountered: