IROEventWriter deprecated

I have some code which uses an interface derived from IROEventWriter, generated by the older RemObjects SDK. In checking out why it doesn’t compile in the new version (8.0.81) I see that IROEventWriter is deprecated from Delphi10 up. I cannot though find any reference to this in the change log or the documentation.

Could someone point me at the relevant change please, and tell me what my code should be now?

xEvents := (BS2Client.ROEventRepository as IClientToServerEvents_Writer);
xEvents.ExcludeSessionList := False;
xEvents.SessionList.Clear;
xEvents.SessionList.Add(xSessionList[nLoop]);
xEvents.OptionChanged(EmptyGUID, nOption, szValue);

Thanks, Matthew

I*_Writer interfaces were moved from *_intf.pas to *_invk.pas because they are required only for server so you need to include your _invk into uses section.

Excellent - easy and sensible solution. I was worried I’d have to change my code!

Many thanks.