2022-02-15 11:19:43 +01:00
|
|
|
package protocol
|
|
|
|
|
2022-02-20 11:33:47 +01:00
|
|
|
// IProtocolReader Représentation abstraite d'un protocol
|
|
|
|
type IProtocolReader interface {
|
2022-02-20 12:35:05 +01:00
|
|
|
// Permet de récupérer le nom de la commande
|
|
|
|
GetCmd() string
|
|
|
|
|
|
|
|
// Permet d'exécuter l'action implémentée par une règle
|
|
|
|
Execute(data string) string
|
2022-02-15 11:19:43 +01:00
|
|
|
|
|
|
|
// Permet de vérifier la validité d'une donnée censée suivre les règles d'un protocol
|
2022-02-20 12:35:05 +01:00
|
|
|
Match(data string) bool
|
2022-02-15 11:19:43 +01:00
|
|
|
}
|