friendica/src/Worker
Roland Häder 27969e8ca6
Continued:
- moved if() block to suggested position by MrPetovan, for me I want to have all
  conditions checked at the start of the method, e.g. no unwanted null
  references or (in this case) if the URL is blacklisted
- normalized URLs are without SSL, means http://host/path/file.ext so they exist
  only once for contacts and servers (aka. instances)
- documented returned type `void`
2023-01-21 01:07:14 +01:00
..
Contact Happy New Year 2023! 2023-01-01 09:36:24 -05:00
AddContact.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
APDelivery.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
BulkDelivery.php Replace direct database calls and anonymous arrays by repository calls and entity objects 2023-01-01 18:50:21 -05:00
CheckDeletedContacts.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
CheckRelMeProfileLink.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
CheckVersion.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ClearCache.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ContactDiscovery.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ContactDiscoveryForUser.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Cron.php News "blocked" field on the gserver table 2023-01-17 17:25:19 +00:00
DBUpdate.php Refactor IManageConfigValues interface 2023-01-03 14:22:04 +01:00
DelayedPublish.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Delivery.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Directory.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Expire.php Remove App dependency from Hook::callSingle 2023-01-14 10:38:37 -05:00
ExpireActivities.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ExpireAndRemoveUsers.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ExpirePosts.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
FetchFeaturedPosts.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
FetchMissingActivity.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ForkHook.php Remove App dependency from Hook::callSingle 2023-01-14 10:38:37 -05:00
MergeContact.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
MoveStorage.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
NodeInfo.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
Notifier.php Merge pull request #12597 from annando/activity-distribution 2023-01-01 19:19:25 -05:00
OnePoll.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
OptimizeTables.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PollContacts.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PostUpdate.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ProcessQueue.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ProcessReplyByUri.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
ProfileUpdate.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PubSubPublish.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PullDirectory.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
PushSubscription.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
README.md Adding REAMDEs to directories 2019-03-22 22:56:57 -04:00
RemoveUnusedAvatars.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
RemoveUnusedContacts.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
RemoveUnusedTags.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
RemoveUser.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
SearchDirectory.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
SpoolPost.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateAllSuggestions.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateBlockedServers.php News "blocked" field on the gserver table 2023-01-17 17:25:19 +00:00
UpdateContact.php Drop UpdateContact worker task if contact is blocked 2023-01-04 14:41:09 -05:00
UpdateContactBirthdays.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateContacts.php Merge pull request #12562 from MrPetovan/bug/notices 2023-01-02 00:34:21 +01:00
UpdateGServer.php News "blocked" field on the gserver table 2023-01-17 17:25:19 +00:00
UpdateGServers.php News "blocked" field on the gserver table 2023-01-17 17:25:19 +00:00
UpdatePhotoAlbums.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateServerDirectories.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateServerDirectory.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00
UpdateServerPeers.php Continued: 2023-01-21 01:07:14 +01:00
UpdateSuggestions.php Happy New Year 2023! 2023-01-01 09:36:24 -05:00

Friendica\Worker

The Worker namespace contains all asynchronous workers of Friendica. The all have to implement the function public static function execute().

They are all executed by the Worker.