-
Notifications
You must be signed in to change notification settings - Fork 2
Custom parameters for generic operations #165
Comments
I noticed that this approach is problematic for the block interface. It defines the |
On Linux currently |
Fixed by #173. |
My specific issue is with the memory server session, but I guess the issue applies to other sessions, too. Take the following memory server:
To use the
Modify
operation, we call theModify
procedure of the memory server with the session as an argument:The problem now is that
Modify
may need to perform different things depending on the context in whichMemory_Server.Modify
is called (e.g. copy data from shared memory to a buffer or vice versa). Right now, we need to define some package variable, set it before callingModify
and performing a different operation depending on that variable.It would be easier if
Modify
had an additional variable with a generic type.The text was updated successfully, but these errors were encountered: