-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathICoilsChangedDelegator.java
More file actions
24 lines (23 loc) · 1002 Bytes
/
ICoilsChangedDelegator.java
File metadata and controls
24 lines (23 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
*
* Creative Commons license: Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0)
* You are free to:
*
*Share - copy and redistribute the material in any medium or format
*for any purpose, even commercially.
*The licensor cannot revoke these freedoms as long as you follow the license terms.
*Under the following terms:
*
*Attribution - You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
*NoDerivatives - If you remix, transform, or build upon the material, you may not distribute the modified material.
*No additional restrictions - You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
*/
package de.re.easymodbus.server;
/**
*
* @author Stefan Roßmann
*/
public interface ICoilsChangedDelegator
{
public void coilsChangedEvent();
}