Skip to content

Commit

Permalink
Swap cds eventhandler args to match the others
Browse files Browse the repository at this point in the history
  • Loading branch information
hufman committed May 9, 2024
1 parent 5377c9c commit 2841877
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etch/BMWRemoting.etch
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ service BMWRemoting {
// car data service
int cds_create () throws IllegalArgumentException, ServiceException, SecurityException;
VersionInfo cds_getVersion () throws IllegalArgumentException, ServiceException, SecurityException;
void cds_addPropertyChangedEventHandler (int handle, string propertyName, string ident, int intervalLimit) throws IllegalArgumentException, ServiceException, SecurityException;
void cds_removePropertyChangedEventHandler (int handle, string propertyName, string ident) throws IllegalArgumentException, ServiceException, SecurityException;
void cds_addPropertyChangedEventHandler (int handle, string ident, string propertyName, int intervalLimit) throws IllegalArgumentException, ServiceException, SecurityException;
void cds_removePropertyChangedEventHandler (int handle, string ident, string propertyName) throws IllegalArgumentException, ServiceException, SecurityException;
@AsyncReceiver(QUEUED)
void cds_getPropertyAsync (int handle, string ident, string propertyName) throws IllegalArgumentException, ServiceException, SecurityException;
@AsyncReceiver(QUEUED)
Expand Down

0 comments on commit 2841877

Please sign in to comment.