Added thread group argument to constructor
This commit is contained in:
parent
209e28cff7
commit
e5bb6cd091
1 changed files with 2 additions and 2 deletions
|
@ -43,8 +43,8 @@ public class Transactor extends Thread {
|
|||
private String tname;
|
||||
|
||||
|
||||
public Transactor (Runnable runnable, NodeManager nmgr) {
|
||||
super (Server.txgroup, runnable, "Transactor");
|
||||
public Transactor (Runnable runnable, ThreadGroup group, NodeManager nmgr) {
|
||||
super (group, runnable, group.getName ());
|
||||
this.nmgr = nmgr;
|
||||
nodes = new HashMap ();
|
||||
cleannodes = new HashMap ();
|
||||
|
|
Loading…
Add table
Reference in a new issue