Hi
Is there a way to store a class object within the session.
I can store a complex type such as a class object within the session by serialising the object but
not all objects used have serialisation implemented, third party libraries etc.
Example
val createClass = exec((session) => {
val foo: regClass = new regClass
session.set("regClass", foo)
})
val setup = exec((session) => {