@@ -406,7 +406,7 @@ |
||
| 406 | 406 | * Send a synchronous XML-RPC subscribe to blog posts or subscribe to post comments request. |
| 407 | 407 | * |
| 408 | 408 | * @param string $email |
| 409 | - * @param array $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 409 | + * @param integer $post_ids (optional) defaults to 0 for blog posts only: array of post IDs to subscribe to blog's posts |
|
| 410 | 410 | * @param bool $async (optional) Should the subscription be performed asynchronously? Defaults to true. |
| 411 | 411 | * |
| 412 | 412 | * @return true|Jetpack_Error true on success |
@@ -52,6 +52,9 @@ discard block |
||
| 52 | 52 | return (double) get_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, 0 ); |
| 53 | 53 | } |
| 54 | 54 | |
| 55 | + /** |
|
| 56 | + * @param integer $time |
|
| 57 | + */ |
|
| 55 | 58 | public function set_next_sync_time( $time, $queue_name ) { |
| 56 | 59 | return update_option( self::NEXT_SYNC_TIME_OPTION_NAME . '_' . $queue_name, $time, true ); |
| 57 | 60 | } |
@@ -64,6 +67,9 @@ discard block |
||
| 64 | 67 | return $this->do_sync_and_set_delays( $this->sync_queue ); |
| 65 | 68 | } |
| 66 | 69 | |
| 70 | + /** |
|
| 71 | + * @param Jetpack_Sync_Queue $queue |
|
| 72 | + */ |
|
| 67 | 73 | public function do_sync_and_set_delays( $queue ) { |
| 68 | 74 | // don't sync if importing |
| 69 | 75 | if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { |
@@ -293,6 +299,10 @@ discard block |
||
| 293 | 299 | } |
| 294 | 300 | |
| 295 | 301 | // in seconds |
| 302 | + |
|
| 303 | + /** |
|
| 304 | + * @param double $seconds |
|
| 305 | + */ |
|
| 296 | 306 | function set_max_dequeue_time( $seconds ) { |
| 297 | 307 | $this->max_dequeue_time = $seconds; |
| 298 | 308 | } |