Can RapidMiner operators return any object?


I have been developing under KNIME and have considered switching to RapidMiner. I need the ability to develop operators that can take and return any object from their ports. Of course, the output ports of one object need to be compatible w/ input ports of the next object, but I would like the ability to pass any object around. Is that possible and how hard to do in RapidMiner?
Tagged:
0
Answers
I'm very impressed with the quality of the manual as well as capability and design of RapidMiner 5.0. Keep up the great work developers!
thanks a lot! As well as for buying the extension as for the kind words. You will already have noticed that you can pass each object that implements the IOObject interface. If you don't have to inherit from another super class, you could extend the ResultObjectAdapter for convenience.
Greetings,
Sebastian