blob: fb7394e9d603ec6ffc289184937ab48a9d9ccf42 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.osgi.hybrid.api;
import com.github.wolfie.refresher.Refresher;
import org.eclipse.osbp.preferences.ProductConfiguration;
public class HybridPartStateRefresher extends Refresher {
private static final long serialVersionUID = 2627881764074882845L;
private boolean fActive;
private final int fIntervalActive;
private final int fIntervalInactive;
public HybridPartStateRefresher(RefreshListener listener) {
fIntervalActive = ProductConfiguration.getHybridRefresherMilliSecsActive();
fIntervalInactive = ProductConfiguration.getHybridRefresherMilliSecsInactive();
addListener(listener);
setActive(true);
}
public void setActive(boolean active) {
if (fActive != active) {
fActive = active;
setRefreshInterval(fActive ? fIntervalActive : fIntervalInactive);
}
}
public boolean isActive() {
return fActive;
}
}