Returns the number of threads used by PlugInFilters to process images and stacks.
()
| 756 | |
| 757 | /** Returns the number of threads used by PlugInFilters to process images and stacks. */ |
| 758 | public static int getThreads() { |
| 759 | if (threads==0) { |
| 760 | threads = getInt(THREADS, 0); |
| 761 | int processors = Runtime.getRuntime().availableProcessors(); |
| 762 | if (threads<1 || threads>processors) |
| 763 | threads = processors; |
| 764 | } |
| 765 | return threads; |
| 766 | } |
| 767 | |
| 768 | /** Sets the number of threads (1-32) used by PlugInFilters to process stacks. */ |
| 769 | public static void setThreads(int n) { |
no test coverage detected