1
0
Fork 0
friendica_2020-09-1_sharedH.../src/Worker
Roland Häder da66730e4f
Rewrite:
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:

From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````

To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints
2022-10-15 00:44:06 +02:00
..
Contact Detect and remove contact duplicates 2022-09-16 05:00:06 +00:00
AddContact.php Catch exceptions for Worker::AddContact() 2022-05-18 22:37:17 +02:00
APDelivery.php Support dropping delivery for single message transfer as well 2022-05-24 12:32:04 +00:00
CheckDeletedContacts.php
CheckVersion.php
ClearCache.php
ContactDiscovery.php
Cron.php Hopefully fixes loops during message processing 2022-08-03 03:38:03 +00:00
DBUpdate.php
DelayedPublish.php
Delivery.php Rewrite: 2022-10-15 00:44:06 +02:00
Directory.php Added more type-hints 2022-06-17 17:18:31 +02:00
Expire.php
ExpireActivities.php Improved message handling / new activity relay handling 2022-07-27 17:39:00 +00:00
ExpireAndRemoveUsers.php
ExpirePosts.php Rewrite: 2022-10-15 00:44:06 +02:00
FetchFeaturedPosts.php
FetchMissingActivity.php Standards 2022-07-24 13:11:52 +00:00
ForkHook.php
MergeContact.php Detect and remove contact duplicates 2022-09-16 05:00:06 +00:00
MoveStorage.php
NodeInfo.php
Notifier.php Rewrite: 2022-10-15 00:44:06 +02:00
OnePoll.php Loglevels are adjusted 2022-08-30 19:45:30 +00:00
OptimizeTables.php
PollContacts.php More cooldown calls for worker processes 2022-09-21 21:03:07 +02:00
PostUpdate.php
ProcessQueue.php Decouple the processor from the receiver 2022-07-27 20:59:42 +00:00
ProcessReplyByUri.php Issue 11776 - process replies via a worker task 2022-07-27 20:03:28 +00:00
ProfileUpdate.php Changes: 2022-06-23 17:30:16 +02:00
PubSubPublish.php Changes: 2022-06-23 17:30:16 +02:00
PullDirectory.php
PushSubscription.php Detect and remove contact duplicates 2022-09-16 05:00:06 +00:00
README.md
RemoveUnusedAvatars.php Loglevels are adjusted 2022-08-30 19:45:30 +00:00
RemoveUnusedContacts.php Detect and remove contact duplicates 2022-09-16 05:00:06 +00:00
RemoveUnusedTags.php
RemoveUser.php Changes: 2022-06-23 17:30:16 +02:00
SearchDirectory.php
SpoolPost.php Loglevels are adjusted 2022-08-30 19:45:30 +00:00
UpdateContact.php Changes: 2022-06-23 17:30:16 +02:00
UpdateContactBirthdays.php
UpdateContacts.php More cooldown calls for worker processes 2022-09-21 21:03:07 +02:00
UpdateFContact.php Worker for updating fcontact entries 2022-09-21 22:47:09 +02:00
UpdateGServer.php Changes: 2022-06-23 17:30:16 +02:00
UpdateGServers.php More cooldown calls for worker processes 2022-09-21 21:03:07 +02:00
UpdatePhotoAlbums.php
UpdateServerDirectories.php
UpdateServerDirectory.php
UpdateServerPeers.php Fix error "Class 'Friendica\Worker\Worker' not found" 2022-09-24 17:29:00 +00: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.