I am using ExecutorService executor = Executors.newFixedThreadPool(1);
in Main activity for networking stuff.
My question is, for other class or activity i have to use this executor object or i have to do shutdown this Executor at end of my main activity and create new instance in other class or activity? What is the bast practice?