http://www.rforge.net/Rserve/index.html'
Reserve 没有回调功能。 您的应用程序可以通过 TCP/ IP 和 R 套接字执行回调, 但它不是 Reserv 的一部分 。 em>
这意味着我的 java 客户端可以通过连接引用在远程会话上调用函数, 但远程会话无法回拨已即时调回的 java 客户端 。 我如何开发这样的机制 。 如果它通过 R 套接字或 tcp/ ip 服务器, 那么每一个连接都会打开套接字服务器吗?
http://www.rforge.net/Rserve/index.html'
Reserve 没有回调功能。 您的应用程序可以通过 TCP/ IP 和 R 套接字执行回调, 但它不是 Reserv 的一部分 。 em>
这意味着我的 java 客户端可以通过连接引用在远程会话上调用函数, 但远程会话无法回拨已即时调回的 java 客户端 。 我如何开发这样的机制 。 如果它通过 R 套接字或 tcp/ ip 服务器, 那么每一个连接都会打开套接字服务器吗?
好吧,所以这就是我认为 执行反应R是可能的。
您需要将 RServe java 客户端和分解方法 < code> request code> 分成两部分, 共行 [1] 。 第一部分向套接字写请求, 第二部分等待响应。 我们需要通过一些 < code > boolean code > 的旗帜来选择等待 。
You will need some kind of active communication to Java. One possibility is to use plain sockets or something on higher level as HTTP. I thought about httpRequest package [2]. So the call from java should look like:
connection.eval(s"""simplePostToHost(
"192.168.12.12","/listener/results/",
try(eval(parse(text="$code")),silent=TRUE),port=8080""")
The request and response should share some kind of unique ID so we know which response is for which request. You should run some service that listen on path /listener/results for incoming results and tells Java that result is ready. It should also enable to reuse RConnection that previously should be marked as "busy". I recommend to use it this part scala Promise[T] .
希望它能帮助某人 一旦我公司需要 我可能会执行它
[2]https://cran.r-project.org/web/packages/httprequest/httprequest.pdf
以下是我在
以 R 实例开始
Rengine re= new Rengine(args, false, new TextConsole());
Here is the code you can see for the call back:
Also, check the links for further reference. I didn t got who is the author otherwise I would have mentioned it.
This is a really really simple question to which I seem to be entirely unable to get a solution. I would like to do a scatter plot of an observed time series in R, and over this I want to plot the ...
since the latest Ubuntu release (karmic koala), I noticed that the internal R package advertises on start-up the REvolution package. It seems to be a library collection for high-performance matrix ...
I am trying to run an analysis by invoking R through the command line as follows: R --no-save < SampleProgram.R > SampleProgram.opt For example, consider the simple R program below: mydata =...
I m trying to generate GOFrame objects to generate a gene ontology mapping in R for unsupported organisms (see http://www.bioconductor.org/packages/release/bioc/vignettes/GOstats/inst/doc/...
I have a dataframe df.all and I m plotting it in a bar plot with ggplot2 using the code below. I d like to make it so that the order of the dodged bars is flipped. That is, so that the bars labeled "...
I m getting a weird error when training a glmnet regression. invalid class "dgCMatrix" object: length(Dimnames[[2]]) must match Dim[2] It only happens occasionally, and perhaps only under larger ...
Sorry for the non-descriptive title but I don t know whether there s a word for what I m trying to achieve. Let s assume that I have a list of names of different classes like c( 1 , 2 , 3 , 4 ) ...
I m plotting a group of curves, using facet in ggplot2. I d like to have a smoother applied to plots where there are enough points to smooth, but not on plots with very few points. In particular I d ...