-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring for stability and message handling
- Loading branch information
Showing
15 changed files
with
240 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,5 +25,7 @@ | |
* @author Steven Gong ([email protected]) | ||
*/ | ||
public interface IPassive { | ||
|
||
public static final String KEY = IPassive.class.getName(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,7 @@ | |
* @author Steven Gong ([email protected]) | ||
*/ | ||
public interface IPipe extends IMessageInput, IMessageOutput { | ||
|
||
/** | ||
* Add connection event listener to pipe | ||
* | ||
|
@@ -42,4 +43,5 @@ public interface IPipe extends IMessageInput, IMessageOutput { | |
* Connection event listener | ||
*/ | ||
void removePipeConnectionListener(IPipeConnectionListener listener); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,14 +22,17 @@ | |
import java.util.Map; | ||
|
||
/** | ||
* Out-of-band control message used by inter-components communication which are connected with pipes. Out-of-band data is a separate data stream used for specific purposes (in TCP it's referenced as "urgent data"), like lifecycle control. | ||
* Out-of-band control message used by inter-components communication which are connected with pipes. | ||
* Out-of-band data is a separate data stream used for specific purposes (in TCP it's referenced as "urgent data"), like lifecycle control. | ||
* | ||
* <tt>'Target'</tt> is used to represent the receiver who may be interested for receiving. It's a string of any form. XXX shall we design a standard form for Target, like "class.instance"? | ||
* <tt>'Target'</tt> is used to represent the receiver who may be interested for receiving. | ||
* It's a string of any form. XXX shall we design a standard form for Target, like "class.instance"? | ||
* | ||
* @author The Red5 Project | ||
* @author Steven Gong ([email protected]) | ||
*/ | ||
public class OOBControlMessage implements Serializable { | ||
|
||
private static final long serialVersionUID = -6037348177653934300L; | ||
|
||
/** | ||
|
Oops, something went wrong.