Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow receive commands by CB notifications #1560

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d79cb49
use targetEntityId and targetEntityType from subscription
AlvaroVega Jan 25, 2024
b29e4c6
fix access to targetEntityId and targetEntityType
AlvaroVega Jan 25, 2024
28bde7c
export executeUpdateSideEffects
AlvaroVega Jan 29, 2024
9ec6e26
Merge branch 'master' into task/notify_cmd
AlvaroVega Jan 30, 2024
ce01e87
fix export executeUpdateSideEffects
AlvaroVega Jan 30, 2024
5014749
Merge branch 'master' into task/notify_cmd
AlvaroVega Jan 30, 2024
50dcd61
add missed exports.executeUpdateSideEffects
AlvaroVega Jan 30, 2024
bbbe334
update CNR
AlvaroVega Jan 30, 2024
48cf466
Merge branch 'master' into task/notify_cmd
AlvaroVega Jan 30, 2024
010931f
explain how CB notifies a command to iotagent
AlvaroVega Jan 31, 2024
1058a05
add new fields to command
AlvaroVega Jan 31, 2024
b92f5b6
add new command fields
AlvaroVega Jan 31, 2024
ad89896
fix json
AlvaroVega Feb 5, 2024
b07c2ef
update CNR
AlvaroVega Feb 5, 2024
0ecb5aa
Merge branch 'master' into task/notify_cmd
fgalan Feb 5, 2024
d6bb406
Merge branch 'master' into task/notify_cmd
AlvaroVega Feb 21, 2024
cc3d345
Merge branch 'master' into task/notify_cmd
AlvaroVega Feb 28, 2024
ae08bd6
Merge branch 'master' into task/notify_cmd
AlvaroVega Apr 17, 2024
5b11591
Merge branch 'master' into task/notify_cmd
AlvaroVega Jun 20, 2024
186ef0a
Merge branch 'master' into task/notify_cmd
AlvaroVega Aug 19, 2024
a690249
Merge branch 'master' into task/notify_cmd
AlvaroVega Aug 30, 2024
902402d
Merge branch 'master' into task/notify_cmd
AlvaroVega Sep 16, 2024
645c932
Merge branch 'master' into task/notify_cmd
AlvaroVega Jan 22, 2025
b67ef34
Merge branch 'master' into task/notify_cmd
AlvaroVega Feb 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
export executeUpdateSideEffects
  • Loading branch information
AlvaroVega committed Jan 29, 2024
commit 28bde7c1457c6d1a1cf4d2745c287f7d8037ebb2
1 change: 1 addition & 0 deletions lib/fiware-iotagent-lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ exports.setDataUpdateHandler = contextServer.setUpdateHandler;
exports.setCommandHandler = contextServer.setCommandHandler;
exports.setMergePatchHandler = contextServer.setMergePatchHandler;
exports.setDataQueryHandler = contextServer.setQueryHandler;
exports.executeUpdateSideEffects = contextServer.executeUpdateSideEffects;
exports.setConfigurationHandler = contextServer.setConfigurationHandler;
exports.setRemoveConfigurationHandler = contextServer.setRemoveConfigurationHandler;
exports.setProvisioningHandler = contextServer.setProvisioningHandler;
Expand Down
1 change: 1 addition & 0 deletions lib/services/northBound/contextServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,5 @@ exports.setCommandHandler = intoTrans(context, setCommandHandler);
exports.setNotificationHandler = intoTrans(context, setNotificationHandler);
exports.addNotificationMiddleware = intoTrans(context, addNotificationMiddleware);
exports.setQueryHandler = intoTrans(context, setQueryHandler);
exports.executeUpdateSideEffects = intoTrans(context, contextServerUtils.executeUpdateSideEffects);
exports.init = init;
Loading