cancel
Showing results for 
Search instead for 
Did you mean: 

Notification Service?

pvaibhav
Champ in-the-making
Champ in-the-making
Friends,

Have you planned any Notification Service?

Something that will notify users (by email, or SMS) when a particular asset is copied to a particular directory ?

Vaibhav
6 REPLIES 6

rwetherall
Confirmed Champ
Confirmed Champ
Hi Vaibhav,

We do have an email rule that can be applied to a folder.  This can be triggered when new content is added to (inbound rule) or removed from (outbound rule) the folder, causing an email to be sent.

It's not a very advanced implementation at the moment, the message sent is fairly static, but there is no reason why it couldn't be improved to, for example, use a template to format the outgoing message.  Also there is no reason why we couldn't add an SMS rule to do a similar job.

Adding these features as Rules gives us quite a bit of flexibility as the conditions for rule execution can be quite detailed (especially since in the next release you can add multiple conditions on a rule). 

Thanks,

Roy

pvaibhav
Champ in-the-making
Champ in-the-making
Is the rule engine you have for sending email, asynchronous?

I was thinking about an asynchronous action menchanism that can be used for notifications and anything else that needs to be done asynchrounously.

Do you have plans for this? Is your mechanism asynchronous?

Vaibhav

rwetherall
Confirmed Champ
Confirmed Champ
Hi,

Yes the actions and rules can now be executed asynchronously and I believe this will be exposed in the UI in the next build.

Thanks,

Roy

pvaibhav
Champ in-the-making
Champ in-the-making
Great, all I can say is you guys rock! Smiley Happy Thanks.

manuparmar
Champ in-the-making
Champ in-the-making
How is asynchronous notification handled?

1) I have programmatically set a rule and an action associated with the rule -to be executed asynchronously [using method setExecuteAsynchronously(true)], but could not find any details on when and how many times will the mail be sent asynchronously.


2) Also, it is not very clear if I have to set a rule and an action both as asynchronous.

manuparmar
Champ in-the-making
Champ in-the-making
Well exploring further, I got the answer of my 1st question that it is taken care of by java.util.concurrent .ThreadPoolExecutor class Smiley Very Happy.