Inject timestamp to eventhandler method (2M1)

Hello,

I am using Axon 2 Milestone 1.

How is it possible to inject the timestamp of the event to an event handler?

Event:

{ “_id” : ObjectId( “5001c4b303646459804148ab” ),
“aggregateIdentifier” : “123”,
“sequenceNumber” : 0,
“serializedPayload” : “xy”,
"timeStamp" : “2012-07-14T20:12:51.943+01:00”,
“type” : “My”,
“payloadType” : “MyEvent”,
“payloadRevision” : null,
“serializedMetaData” : “” }

Handler:

@EventHandler
void handle(MyEvent event, DateTime timeStamp)

Do I need to add a specific annotation to the timeStamp parameter?

Thanks for your help
Hannes

@Timestamp on the parameter will do the trick!

BR
Sebastian