package org.ff4j.audit; /* * #%L * ff4j-core * %% * Copyright (C) 2013 - 2014 Ff4J * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ import java.util.concurrent.Callable; import org.ff4j.audit.repository.EventRepository; /** * Worker to save {@link Event} into {@link EventRepository} asynchronously. * * @author Cedrick Lunven (@clunven) */ public class EventWorker implements Callable<Boolean> { /** Target event to insert. */ private Event event = null; /** current thread name if relevant. */ private String name = null; /** Repository to store event. */ private EventRepository eventRepository = null; /** retry count if not available. */ private static final int MAX_RETRY = 3; /** retry delay. */ private static final long RETRY_DELAY = 500L; /** * Worker constructor. * * @param e * event * @param repo * event repository to store events */ public EventWorker(Event e, EventRepository repo) { this.event = e; this.eventRepository = repo; if (e != null) { this.name = e.getTimestamp() + "-" + e.getAction() + "-" + e.getName(); } } /** {@inheritDoc} */ @Override public Boolean call() throws Exception { boolean ok = false; int retryCount = 0; while (!ok && retryCount < MAX_RETRY) { ok = eventRepository.saveEvent(event); if (!ok) { retryCount++; Thread.sleep(RETRY_DELAY); } } return ok; } /** * Getter accessor for attribute 'name'. * * @return * current value of 'name' */ public String getName() { return name; } /** * Setter accessor for attribute 'name'. * @param name * new value for 'name ' */ public void setName(String name) { this.name = name; } }