i have the following situation in java: I have 1 Interface called "A" that needs to be implemented by an class i load dynamically after the program start. Lets call it B. This interface provides x (more than 1) Methods. Lets call em from a() to z(). Now i have to wrap this class for some time measuring and control issues and run it in its own thread to be able to kill it if it takes too long. Therefor i have invented class C that wraps B because B doesn't implement runnable on its own. The next part ist the Class the original Program should call. New Class D. D implements interface A as well to hide the whole controlling part from the model. Now i have to wrap the methods of the interface in D and send them over and Callable to C who unwraps them and executes them on Object B. I hope i explained it well enough. Sorry for my bad english.
Here some example code who i imagined it can be:
public class D implements A {
private C ai;
public D(String aiName) {
ai = new C("trivialKi");
}
private void call(parameters, ORIGIN_METHOD origin) {
AiTaskExecutor task = new AiTaskExecutor(parameters, origin, ai);
FutureTask<Long> tsk = new FutureTask<Long>(task);
Thread thread = new Thread(tsk);
thread.start();
if (abort) {
tsk.cancel(true);
}
}
@Override
public void a(g g, f f, t t) {
call(g, f, t, ORIGIN_METHOD.a);
}
@Override
public void b(g g, t t, h h) {
call(g, t, h, ORIGIN_METHOD.b);
}
@Override
public void c(g g, t t, f f) {
call(g, t, f, ORIGIN_METHOD.c);
}
}
and in class C the obvious switch case with that enum to pass the parameters to the right method on the class B that is held in class C als private field.
dou you have a better solution in mind? i personally dont like the enum thing and if the parameters are too different this does not work very well. is there a "standard" solution for things like that?