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
Show 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;
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.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
{
private
Map
<
Class
<?
extends
Object
>,
List
<
Object
>>
_cache
=
new
HashMap
<>();
private
Host
_host
;
public
DefaultCachingComponent
(
Host
pHost
,
)
{
private
CacheInvalidationStrategy
_invalidationStrategy
;
private
CacheReplacementStrategy
_replacementStrategy
;
public
DefaultCachingComponent
(
Host
pHost
,
CacheInvalidationStrategy
pInvalidationStrategy
,
CacheReplacementStrategy
pReplacementStrategy
)
{
_host
=
pHost
;
_host
.
getNetworkComponent
().
getByName
(
NetInterfaceName
.
WIFI
).
addConnectivityListener
(
this
);
_invalidationStrategy
=
pInvalidationStrategy
;
_replacementStrategy
=
pReplacementStrategy
;
}
@Override
...
...
src/de/tud/kom/p2psim/impl/vehicular/caching/invalidation/CacheInvalidationStrategyType.java
View file @
990bf693
...
...
@@ -20,18 +20,18 @@
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
{
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
;
}
public
Cache
Replacement
Strategy
getReplacementStrategy
()
{
public
Cache
Invalidation
Strategy
getReplacementStrategy
()
{
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