~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to lib/XMR/PlayerActionInterface.php

  • Committer: Dan Garner
  • Date: 2015-08-11 09:29:02 UTC
  • mto: This revision was merged to the branch mainline in revision 453.
  • Revision ID: git-v1:a86fb4369b7395c13367577d23b14c0ab4528c1a
Transitions fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * Spring Signage Ltd - http://www.springsignage.com
4
 
 * Copyright (C) 2015 Spring Signage Ltd
5
 
 * (PlayerActionInterface.php)
6
 
 */
7
 
 
8
 
 
9
 
namespace Xibo\XMR;
10
 
 
11
 
/**
12
 
 * Interface PlayerActionInterface
13
 
 * @package Xibo\XMR
14
 
 */
15
 
interface PlayerActionInterface
16
 
{
17
 
    /**
18
 
     * Get the Message
19
 
     * @return mixed
20
 
     */
21
 
    public function getMessage();
22
 
 
23
 
    /**
24
 
     * Get Encrypted Message
25
 
     * @return mixed
26
 
     */
27
 
    public function getEncryptedMessage();
28
 
 
29
 
    /**
30
 
     * Set Display Identity for the Action
31
 
     * @param string $channel
32
 
     * @param string $key
33
 
     * @return mixed
34
 
     */
35
 
    public function setIdentity($channel, $key);
36
 
 
37
 
    /**
38
 
     * Send the message
39
 
     * @param $connection
40
 
     * @return mixed
41
 
     */
42
 
    public function send($connection);
43
 
}
 
 
b'\\ No newline at end of file'