Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I had a requirement to send the notification to friends mobiles depending on the users time zones. I will be having the timezones in my application database in the form of UTC+5:30, some thing like this. there will be users from different time zones. So, i need to send the notificatons like the birthday notifications of user mobiles to his friends in their respective time zones.

How can i achieve this functionality with out using schedulers.? Is there any other alternative other than Schedulers
Posted
Comments
_Maxxx_ 20-Aug-14 2:04am    
The time zone issue doesn't seem to be relevant here - essentially are you asking how to send a message at a given time without using schedulers?
What do you mean by schedulers, and why don't you want to use one? A scheduler is just something that schedules something - which is by definition what you want to do - so I think you may not have explained yourself well.
Also, when you say send notifications to his friends, what sort of notifications? Are you talking about sending an SMS, and email?
If it needs to be push technology then you will have to schedule it in some way - even if you just check every (say) 15 minutes if anything is due. If it can be pull (e.g. when a friend logs in they are told it's Bill's Birthday then you don't need any sort of schedule, just a database record holding the relevant data.
Perhaps you can give us some more detail to help us to help you?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900