in aws-xray-agent/src/main/java/com/amazonaws/xray/agent/runtime/models/XRayTransactionContext.java [31:41]
public void setTraceEntity(@Nullable Entity entity) {
if (entity != null && entity.getCreator() != null) {
for (SegmentListener l : entity.getCreator().getSegmentListeners()) {
if (l != null) {
l.onSetEntity((Entity) TransactionContext.getMetadata(XRAY_ENTITY_KEY), entity);
}
}
}
TransactionContext.putMetadata(XRAY_ENTITY_KEY, entity);
}