Skip to content

Commit

Permalink
Deprecate the BehaviourConsumer/Producer/Writer classes
Browse files Browse the repository at this point in the history
  • Loading branch information
leif81 committed Nov 11, 2022
1 parent 5574b27 commit b3fe648
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/edu/nps/moves/net/BehaviorConsumerIF.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* @author DMcG
* @version $Id:$
*/
@Deprecated(since = "5.1", forRemoval = true)
public interface BehaviorConsumerIF {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*
* @author DMcG
*/
@Deprecated(since = "5.1", forRemoval = true)
public class BehaviorConsumerThreaded implements BehaviorConsumerIF, Runnable {

private Vector<Pdu> receivedPdus;
Expand Down
1 change: 1 addition & 0 deletions src/main/java/edu/nps/moves/net/BehaviorProducerIF.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* @author DMcG
* @version $Id:$
*/
@Deprecated(since = "5.1", forRemoval = true)
public interface BehaviorProducerIF {

/**
Expand Down
1 change: 1 addition & 0 deletions src/main/java/edu/nps/moves/net/BehaviorProducerUDP.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
*
* @author DMcG
*/
@Deprecated(since = "5.1", forRemoval = true)
public class BehaviorProducerUDP implements BehaviorProducerIF, // Listener pattern for pdus
BehaviorWriterIF, // IF for writing DIS pdus
Runnable // Threaded object
Expand Down
1 change: 1 addition & 0 deletions src/main/java/edu/nps/moves/net/BehaviorWriterIF.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* @author DMcG
* @version $Id:$
*/
@Deprecated(since = "5.1", forRemoval = true)
public interface BehaviorWriterIF {

/** The (rough) size of an ethernet frame */
Expand Down

0 comments on commit b3fe648

Please sign in to comment.