-
Notifications
You must be signed in to change notification settings - Fork 407
enable input tokens in magic commands #1986
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
Conversation
ea2eed6
to
baaf8bb
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So far it looks good
baaf8bb
to
50a1c98
Compare
|
||
public KernelCommandAndEventTextReaderReceiver(TextReader reader) | ||
public KernelCommandAndEventTextStreamReceiver( | ||
TextReader reader, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why rename to TextStream if the input is still TextReader?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Symmetry with the corresponding sender.
private readonly TextWriter _writer; | ||
|
||
public KernelCommandAndEventTextStreamSender(TextWriter writer, Uri remoteHostUri) | ||
public KernelCommandAndEventTextStreamSender( | ||
TextWriter writer, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question here sender using a TextWriter but having TextStream in the name
This will address #1554.