You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
In the case below, I have an interface InventoryEntityMonitorImmortal, it contains methods named Subscribe and UnSubscribe using overriding.
And this caused the Code Gen generated Proxy_InventoryEntityMonitorImmortal to have duplicated definitions of method Subscribe_ReturnValue(byte[] buffer, int cursor) which eventually caused compile errors.
private object
Subscribe_ReturnValue(byte[] buffer, int cursor)
{
// buffer will be an empty byte array since the method Subscribe returns void
// so nothing to read, just getting called is the signal to return to the client
return this;
}
In the case below, I have an interface InventoryEntityMonitorImmortal, it contains methods named Subscribe and UnSubscribe using overriding.
And this caused the Code Gen generated Proxy_InventoryEntityMonitorImmortal to have duplicated definitions of method Subscribe_ReturnValue(byte[] buffer, int cursor) which eventually caused compile errors.
private object
Subscribe_ReturnValue(byte[] buffer, int cursor)
{
// buffer will be an empty byte array since the method Subscribe returns void
// so nothing to read, just getting called is the signal to return to the client
return this;
}
InventoryEntityMonitorImmortal.txt
Proxy_InventoryEntityMonitorImmortal.txt
The text was updated successfully, but these errors were encountered: