Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simonstrator
PeerfactSim.KOM
Commits
990bf693
Commit
990bf693
authored
Sep 18, 2017
by
Tobias Meuser
Browse files
Fixed minor bug
parent
1e018fd5
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/de/tud/kom/p2psim/impl/vehicular/caching/DefaultCachingComponent.java
View file @
990bf693
...
@@ -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
...
...
src/de/tud/kom/p2psim/impl/vehicular/caching/invalidation/CacheInvalidationStrategyType.java
View file @
990bf693
...
@@ -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.CacheReplacement
Strategy
;
import
de.tudarmstadt.maki.simonstrator.api.component.vehicular.caching.
invalidation.CacheInvalidation
Strategy
;
public
enum
CacheInvalidationStrategyType
{
public
enum
CacheInvalidationStrategyType
{
DEFAULT
(
new
DefaultCacheInvalidationStrategy
());
DEFAULT
(
new
DefaultCacheInvalidationStrategy
());
private
final
Cache
Replacement
Strategy
replacementStrategy
;
private
final
Cache
Invalidation
Strategy
replacementStrategy
;
private
CacheInvalidationStrategyType
(
final
Cache
Replacement
Strategy
replacementStrategy
)
{
private
CacheInvalidationStrategyType
(
final
Cache
Invalidation
Strategy
replacementStrategy
)
{
this
.
replacementStrategy
=
replacementStrategy
;
this
.
replacementStrategy
=
replacementStrategy
;
}
}
public
Cache
Replacement
Strategy
getReplacementStrategy
()
{
public
Cache
Invalidation
Strategy
getReplacementStrategy
()
{
return
replacementStrategy
;
return
replacementStrategy
;
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment