Skip to content

Commit dce726f

Browse files
author
Open Lowcode SAS
committed
Close #263
This solution may be temporary if risks of creating several instances of the class in same millisecond (uses nanotime but not sure what is the resolution).
1 parent 6b7ba52 commit dce726f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/org/openlowcode/server/action/SInlineEchoActionRef.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class SInlineEchoActionRef<E extends DataEltType>
3939
* @param dataelementtype type of data to transfer
4040
*/
4141
public SInlineEchoActionRef(E dataelementtype) {
42-
super("ECHO", SystemModule.getSystemModule().getName(), -1, true);
42+
super("ECHO"+Thread.currentThread().getId()+System.nanoTime(), SystemModule.getSystemModule().getName(), -1, true);
4343
this.dataelementtype = dataelementtype;
4444
}
4545

0 commit comments

Comments
 (0)