nextcloud/lib/public/Notification/IApp.php

52 рядки
1.3 KiB
PHP

2015-08-31 12:24:37 +02:00
<?php
/**
2016-01-12 15:02:16 +01:00
* @copyright Copyright (c) 2016, ownCloud, Inc.
2016-07-21 17:07:57 +02:00
*
* @author Joas Schilling <coding@schilljs.com>
*
2015-08-31 12:24:37 +02:00
* @license AGPL-3.0
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
*
*/
namespace OCP\Notification;
2015-08-31 12:24:37 +02:00
/**
* Interface IApp
*
* @package OCP\Notification
2016-01-22 10:51:36 +01:00
* @since 9.0.0
2015-08-31 12:24:37 +02:00
*/
interface IApp {
/**
* @param INotification $notification
* @throws \InvalidArgumentException When the notification is not valid
2016-01-22 10:51:36 +01:00
* @since 9.0.0
2015-08-31 12:24:37 +02:00
*/
public function notify(INotification $notification);
/**
* @param INotification $notification
2016-01-22 10:51:36 +01:00
* @since 9.0.0
2015-08-31 12:24:37 +02:00
*/
public function markProcessed(INotification $notification);
2015-08-31 12:24:37 +02:00
/**
* @param INotification $notification
2015-08-31 12:24:37 +02:00
* @return int
2016-01-22 10:51:36 +01:00
* @since 9.0.0
2015-08-31 12:24:37 +02:00
*/
public function getCount(INotification $notification);
2015-08-31 12:24:37 +02:00
}