![JAR search and dependency download from the Maven repository](/logo.png)
org.rosuda.REngine.REngineConsoleHistoryInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of REngine Show documentation
Show all versions of REngine Show documentation
REngine API to access R from Java in a backend-independent way.
The newest version!
package org.rosuda.REngine;
/** interface defining delegate methods used by {@link REngine} to forward console history callbacks from R. */
public interface REngineConsoleHistoryInterface {
/** called when R wants to save the history content.
* @param eng calling engine
* @param filename name of the file to save command history to
*/
public void RSaveHistory (REngine eng, String filename);
/** called when R wants to load the history content.
* @param eng calling engine
* @param filename name of the file to load the command history from
*/
public void RLoadHistory (REngine eng, String filename);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy