org.camunda.feel.playground.sevice.NoopTrackingService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feel-scala-playground Show documentation
Show all versions of feel-scala-playground Show documentation
The API for the FEEL-Scala Playground
package org.camunda.feel.playground.sevice;
import java.util.Map;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.stereotype.Component;
@Component
@ConditionalOnMissingBean(MixpanelProperties.class)
public class NoopTrackingService implements TrackingService {
@Override
public void trackExpressionEvaluation(Map metadata) {
// no-op
}
@Override
public void trackUnaryTestsExpressionEvaluation(Map metadata) {
// no-op
}
}