I am currently implementing the Quartz timer to allow scheduling of some data files. I have a abstract DataOutput class and then implementations to cover the different types of output (http, file, etc). I have implemented the interface on both specialisations but I am having compilation errors when I try and declare this on the abstract base in order to create objects of type DataOutput so I can deal with these at runtime.
Is this possible?
You’ll need to at least abstractly implement the interface:
I’m not sure if you’ve done this since you didn’t post any code or errors.