Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.

Read current status in Java

MerlotMerlot Member Posts: 12 Contributor II
edited November 2018 in Help
Hi all,

when I invoke RapidMinter into an own Java application, is there any way to "read" the current status which would be shown in the status bar when using the GUI?

I already had a look at http://rapid-i.com/api/rapidminer-5.1/com/rapidminer/gui/tools/StatusBar.html, but can't see any methods to "read" the current status.

Regards
Merlot

ps
I'm sorry. I wanted to place this thread into "Problems and Support" and not into "Getting Started". Maybe a mod wants to move this thread.

Answers

  • Marco_BoeckMarco_Boeck Administrator, Moderator, Employee, Member, University Professor Posts: 1,996 RM Engineering
    Hi,

    you can use the ProcessListener interface for that. Just register an implementation of it to the root operator of your process, and you will be notified of any progress updates.

    process.getRootOperator().addProcessListener(myProcessListener);
    Regards,
    Marco
Sign In or Register to comment.