Commit 990bf693 authored by Tobias Meuser's avatar Tobias Meuser
Browse files

Fixed minor bug

parent 1e018fd5
...@@ -30,15 +30,23 @@ import de.tudarmstadt.maki.simonstrator.api.component.network.NetInterface; ...@@ -30,15 +30,23 @@ import de.tudarmstadt.maki.simonstrator.api.component.network.NetInterface;
import de.tudarmstadt.maki.simonstrator.api.component.network.NetworkComponent.NetInterfaceName; import de.tudarmstadt.maki.simonstrator.api.component.network.NetworkComponent.NetInterfaceName;
import de.tudarmstadt.maki.simonstrator.api.component.transport.ConnectivityListener; import de.tudarmstadt.maki.simonstrator.api.component.transport.ConnectivityListener;
import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.CachingComponent; import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.CachingComponent;
import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.invalidation.CacheInvalidationStrategy;
import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.replacement.CacheReplacementStrategy;
public class DefaultCachingComponent implements CachingComponent, ConnectivityListener { public class DefaultCachingComponent implements CachingComponent, ConnectivityListener {
private Map<Class<? extends Object>, List<Object>> _cache = new HashMap<>(); private Map<Class<? extends Object>, List<Object>> _cache = new HashMap<>();
private Host _host; private Host _host;
public DefaultCachingComponent(Host pHost, ) { private CacheInvalidationStrategy _invalidationStrategy;
private CacheReplacementStrategy _replacementStrategy;
public DefaultCachingComponent(Host pHost, CacheInvalidationStrategy pInvalidationStrategy, CacheReplacementStrategy pReplacementStrategy) {
_host = pHost; _host = pHost;
_host.getNetworkComponent().getByName(NetInterfaceName.WIFI).addConnectivityListener(this); _host.getNetworkComponent().getByName(NetInterfaceName.WIFI).addConnectivityListener(this);
_invalidationStrategy = pInvalidationStrategy;
_replacementStrategy = pReplacementStrategy;
} }
@Override @Override
......
...@@ -2,17 +2,17 @@ ...@@ -2,17 +2,17 @@
* Copyright (c) 2005-2010 KOM – Multimedia Communications Lab * Copyright (c) 2005-2010 KOM – Multimedia Communications Lab
* *
* This file is part of Simonstrator.KOM. * This file is part of Simonstrator.KOM.
* *
* Simonstrator.KOM is free software: you can redistribute it and/or modify * Simonstrator.KOM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* any later version. * any later version.
* *
* PeerfactSim.KOM is distributed in the hope that it will be useful, * PeerfactSim.KOM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with PeerfactSim.KOM. If not, see <http://www.gnu.org/licenses/>. * along with PeerfactSim.KOM. If not, see <http://www.gnu.org/licenses/>.
* *
...@@ -20,18 +20,18 @@ ...@@ -20,18 +20,18 @@
package de.tud.kom.p2psim.impl.vehicular.caching.invalidation; package de.tud.kom.p2psim.impl.vehicular.caching.invalidation;
import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.replacement.CacheReplacementStrategy; import de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.invalidation.CacheInvalidationStrategy;
public enum CacheInvalidationStrategyType { public enum CacheInvalidationStrategyType {
DEFAULT(new DefaultCacheInvalidationStrategy()); DEFAULT(new DefaultCacheInvalidationStrategy());
private final CacheReplacementStrategy replacementStrategy; private final CacheInvalidationStrategy replacementStrategy;
private CacheInvalidationStrategyType(final CacheReplacementStrategy replacementStrategy) { private CacheInvalidationStrategyType(final CacheInvalidationStrategy replacementStrategy) {
this.replacementStrategy = replacementStrategy; this.replacementStrategy = replacementStrategy;
} }
public CacheReplacementStrategy getReplacementStrategy() { public CacheInvalidationStrategy getReplacementStrategy() {
return replacementStrategy; return replacementStrategy;
} }
} }
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment