public interface ICache<K,V>
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
configure(String ownerName) |
V |
get(K key)
Obtain a potentially cached value, set by put().
|
void |
open() |
void |
put(K key,
V value)
store a value in the cache, that can be retrieved later using get().
|
K |
transformKey(String input,
PipeLineSession session)
Transform the the current request message to a key in the cache-map.
|
V |
transformValue(Message input,
PipeLineSession session)
Transform the the current response message to a value in the cache-map.
|
void configure(String ownerName) throws ConfigurationException
ConfigurationException
void open()
void close()
K transformKey(String input, PipeLineSession session)
V transformValue(Message input, PipeLineSession session)
Copyright © 2023 Frank!Framework. All rights reserved.