Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Async dispatch #72

Merged
merged 2 commits into from
Nov 14, 2015
Merged

Async dispatch #72

merged 2 commits into from
Nov 14, 2015

Conversation

alanz
Copy link
Collaborator

@alanz alanz commented Nov 13, 2015

Closes #67

A plugin can decide on a per-command basis whether it should have the option to return an async result.

If so, it takes responsibility for managing whatever threads are required to create the async processing, but each message has a callback function for when the result is ready.

@@ -34,8 +36,8 @@ jsonStdioTransport cin = do
putStr $ show (HieError (A.String $ T.pack $ show err))
loop (cid + 1) stream'
Just (Right r) -> do
writeChan cin (wireToChannel cout cid r)
rsp <- readChan cout
atomically $ writeTChan cin (wireToChannel cout cid r)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even if the plugin is async we block completely at this point, which seems like the wrong thing to do, since we don't gain anything from having async that way. But we should probably try to get the reworked jsonStdioTransport before changing that.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also we can do that in a separate pr.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have not touched the transport side, pending the STX PR.

Once it is done, this will have to be split into two processes, one which reads on stdio and writes to the Chan to the dispatcher, the other waits on the return Chan and relays on to stdout.

But better not to mix two things at once, it can wait.

A given plugin/plugin command can operate in asynchronous fashion.

Only the reply path mechanism is given, it is up to the plugin to do
whatver makes sense for the specific plugin to deal with the async
action.
alanz added a commit that referenced this pull request Nov 14, 2015
@alanz alanz merged commit f99b6f5 into haskell:master Nov 14, 2015
@alanz alanz deleted the async-dispatch-1 branch April 23, 2017 12:48
@alanz alanz added this to the prehistory milestone Feb 2, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants