Repository: reef Updated Branches: refs/heads/master 37d1891c6 -> 1add8399e
[REEF-1617] Mark the RxTimerStage class as obsolete This change marks the RxTimerStage C# class as being obsolete since it is not used on the C# side and does not exist on the java side. JIRA: [REEF-1617](https://issues.apache.org/jira/browse/REEF-1617) Pull Request: This closes #1135 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/1add8399 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/1add8399 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/1add8399 Branch: refs/heads/master Commit: 1add8399e84a9153774aaf9b63b2571490c15303 Parents: 37d1891 Author: Doug Service <[email protected]> Authored: Mon Sep 26 19:00:20 2016 -0700 Committer: Markus Weimer <[email protected]> Committed: Tue Sep 27 11:10:07 2016 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/1add8399/lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs b/lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs index 617f3bb..0d228dc 100644 --- a/lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs +++ b/lang/cs/Org.Apache.REEF.Wake/RX/Impl/RxTimerStage.cs @@ -22,6 +22,7 @@ using Org.Apache.REEF.Wake.Impl; namespace Org.Apache.REEF.Wake.RX.Impl { /// <summary>Timer stage that provides events to the observer periodically</summary> + [Obsolete("TODO[JIRA REEF-1617] This class will be removed")] public sealed class RxTimerStage : IStage, IStaticObservable { private readonly Timer _timer;
