Skip to content
Snippets Groups Projects
Commit 457b0076 authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

name Fetcher threads

parent 7730dadd
No related branches found
Tags
No related merge requests found
...@@ -217,6 +217,7 @@ public class VolatileGlobalCellCache< A extends VolatileAccess > implements Cach ...@@ -217,6 +217,7 @@ public class VolatileGlobalCellCache< A extends VolatileAccess > implements Cach
{ {
final Fetcher f = new Fetcher(); final Fetcher f = new Fetcher();
f.setDaemon( true ); f.setDaemon( true );
f.setName( "Fetcher-" + i );
fetchers.add( f ); fetchers.add( f );
f.start(); f.start();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment