Examples of MissingValueBehavior


Examples of com.linkedin.databus2.relay.config.ReplicationBitSetterStaticConfig.MissingValueBehavior

    _inputStream = inputStream;
    _schemaRegistry = schemaRegistry;
    _errorOnMissingFields = pConfig.getErrorOnMissingFields();
    _replicationBitConfig = pConfig.getReplBitSetter();

    MissingValueBehavior mvb = _replicationBitConfig.getMissingValueBehavior();
    if(mvb != MissingValueBehavior.STOP_WITH_ERROR)
      _log.warn("ReplicationBit Setter Config is set to continue parsing and mark events as ("
                  + (mvb == MissingValueBehavior.TREAT_EVENT_LOCAL ? "local" : "replicated")
                  + ") when replication-identifier is missing !!");
   
View Full Code Here

Examples of com.linkedin.databus2.relay.config.ReplicationBitSetterStaticConfig.MissingValueBehavior

      type = SourceType.valueOf(_sourceType);
    } catch (IllegalArgumentException iae) {
      throw new InvalidConfigException("Source Types should be one of (" + Arrays.asList(SourceType.values()) + ") but is (" + _sourceType + ")");
    }

    MissingValueBehavior missingValueForDelete = null;
    try
    {
      missingValueForDelete = MissingValueBehavior.valueOf(_missingValueBehavior);
    } catch ( IllegalArgumentException iae) {
      throw new InvalidConfigException("Missing Value For Delete Behavior should be one of (" + Arrays.asList(MissingValueBehavior.values()) + ") but is (" + _missingValueBehavior + ")");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.