Package com.senseidb.search.query

Examples of com.senseidb.search.query.TimeRetentionFilter


                    String unitString = _senseiConf.getString(SENSEI_ZOIE_RETENTION_TIMEUNIT, "seconds");
                    TimeUnit unit = TimeUnit.valueOf(unitString.toUpperCase());
                    if (unit == null) {
                        throw new ConfigurationException("Invalid timeunit for retention: " + unitString);
                    }
                    purgeFilter = new TimeRetentionFilter(timeColumn, retentionDays, unit);
                }
                if (purgeFilter != null && pluggableSearchEngineManager != null) {
                    purgeFilter = new PurgeFilterWrapper(purgeFilter, pluggableSearchEngineManager);
                }
            }
View Full Code Here

TOP

Related Classes of com.senseidb.search.query.TimeRetentionFilter

Copyright © 2018 www.massapicom. 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.