I have set up apache geode and I am using Pivotal.Gemfire.dll
to set up the cache listener by extending CacheListenerAdapter
.
Problem is, the below never fires when listening to the region with the correct key:
public override void AfterCreate(EntryEvent<TKey, TVal> ev)
{
//code
}
This does, however, work in a desktop application (Console.app/WinForms) but not in web application (MVC/WebForms)
If someone could help me or point me to the correct documentation page, I would really appreciate, it's been 3 days since I'm trying to get this to work.