public CPOCsvCamelWatchService(@Named("ProcessCPOCsvEntry") final ActorRef actorRef,
CamelContext camelContext,
final @Named("cpo.from") String cpoFrom) throws Exception {
this.camelContext = camelContext;
camelContext.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from(cpoFrom)
.unmarshal().bindy(BindyType.Csv, "models.csv")
.split(body())