proc_julia: Run a Julia process

Description Usage Arguments Value Examples

Description

This function returns a list of functions to start/run/stop a Julia process. The code is sent to Julia via a socket connection, and the results are written back in another socket connection.

Usage

1
proc_julia(port = 2000)

Arguments

port

A TCP port number

Value

A list of functions start(), exec(), running() (check if the process has been running), and stop().

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
j = proc_julia()
j$start()
j$exec("1+1")
j$exec("a=[1:8]", "a+5")
j$running()  # should be TRUE
j$stop()

## End(Not run)

yihui/runr documentation built on May 4, 2019, 4:26 p.m.