0

alternate of below code

import com.hazelcast.map.AbstractEntryProcessor;


public class <ClassName> extends AbstractEntryProcessor<a,b>{

// body of the class

}

error --> Cannot resolve symbol 'AbstractEntryProcessor'

please don't give the link of documentation and i know AbstractEntryProcessor is removed SomeOne please help me in this

Deepak_M
  • 11
  • 4
  • I don’t think this should have been closed, question isn’t about the meaning of the error but specifically what is the Hazelcast alternative to the removed class. You can “implement EntryProcessor” in your class rather than extend AbstractEntryProcessor. Now that Java supports default methods in interfaces many abstract classes can be eliminated by providing default method implementations, and this was done for EntryProcessor making the abstract version unnecessary. – Mike Yawn Dec 24 '22 at 16:49

0 Answers0