org.axonframework.upcasting
Interface UpcasterAware

All Known Implementing Classes:
FileSystemEventStore, GaeEventStore, JdbcEventStore, JpaEventStore, MongoEventStore, MongoEventStore

public interface UpcasterAware

Interface indicating that the implementing mechanism is aware of Upcasters. Upcasting is the process where deprecated Domain Objects (typically Events) are converted into the current format. This process typically occurs with Domain Events that have been stored in an Event Store.

Since:
2.0
Author:
Allard Buijze

Method Summary
 void setUpcasterChain(UpcasterChain upcasterChain)
          Sets the UpcasterChain which allow older revisions of serialized objects to be deserialized.
 

Method Detail

setUpcasterChain

void setUpcasterChain(UpcasterChain upcasterChain)
Sets the UpcasterChain which allow older revisions of serialized objects to be deserialized.

Parameters:
upcasterChain - the upcaster chain providing the upcasting capabilities


Copyright © 2010-2016. All Rights Reserved.