I'm writing a family of classes, all using the Camera. Each class has 4 basic methods to init, start, stop or release the camera.
I would like to run these methods in a background thread. But I'm struggling to find an easy way to do that.
The only way I found out is to use a common ExecutorService
defined as
ExecutorService backgroundThread = Executors.newSingleThreadExecutor();
Then, I have to wrap the code of each single method around something like this:
public void start(){
AbstractLight.backgroundThread.execute(new Runnable(){
public void run(){
//write "start method" code here
}
});
}
I guess there is a smarter way to do that but I don't know any. Has someone a trick to do that ?
Thank you
You could create an abstract parent class that contains the 'async' versions of these methods.
Start off with an abstract parent class, and wrap each of these in their own runnable async version of themselves. Now, whenever you inherit from the abstract parent, each will automatically have their own runnable. You can then put them into an executor or whatever you need from the parent.
This will give you a good base for the entire family of classes you are writing, without placing Runnables everywhere.
If you are wanting to force all of these to run on the background thread, make the abstract methods protected. Then place your executor service in the parent class, and instead of returning the Runnable, kick it off in the executor service.
Each of your child classes now have all of the async operations automatically, but you only have to implement the four methods to achieve that.