Only propagate on ConvertToString when there's changes.
This commit is contained in:
parent
67348d9e03
commit
4f2721fb90
@ -233,10 +233,12 @@ public class ConvertToString implements Part {
|
|||||||
encoded = value.toString();
|
encoded = value.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!_lastValue.equals(encoded)) {
|
||||||
_lastValue = encoded;
|
_lastValue = encoded;
|
||||||
|
|
||||||
_stringOutputConnector.send(new StringSignal(encoded));
|
_stringOutputConnector.send(new StringSignal(encoded));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String get_id() {
|
public String get_id() {
|
||||||
|
Loading…
Reference in New Issue
Block a user