| complete_request {JuniperKernel} | R Documentation |
Handler for the complete_request Message Type
complete_request(request_msg)
request_msg |
A list passed in from |
A list having names msg_type and content. The
msg_type is complete_reply, which corresponds
to the complete_request message. The content field
complies with the Jupyter wire message protocol specification
for complete_reply messages.
Spencer Aiello
http://jupyter-client.readthedocs.io/en/latest/messaging.html#completion
## Not run:
request_msg <- list("code"="print(\"hello\")", cursor_pos=4)
complete_request(request_msg)
## End(Not run)