Skip to content

Commit 7530361

Browse files
rx.operators -> rx.internal.operators
1 parent d3a2f68 commit 7530361

File tree

206 files changed

+230
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+230
-219
lines changed

rxjava-core/src/main/java/rx/Observable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
import rx.exceptions.*;
2121
import rx.functions.*;
22+
import rx.internal.operators.*;
2223
import rx.observables.*;
2324
import rx.observers.SafeSubscriber;
24-
import rx.operators.*;
2525
import rx.plugins.*;
2626
import rx.schedulers.*;
2727
import rx.subjects.*;

rxjava-core/src/main/java/rx/operators/BlockingOperatorLatest.java renamed to rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorLatest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.Iterator;
1919
import java.util.NoSuchElementException;

rxjava-core/src/main/java/rx/operators/BlockingOperatorMostRecent.java renamed to rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorMostRecent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.Iterator;
1919

rxjava-core/src/main/java/rx/operators/BlockingOperatorNext.java renamed to rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorNext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.Iterator;
1919
import java.util.NoSuchElementException;

rxjava-core/src/main/java/rx/operators/BlockingOperatorToFuture.java renamed to rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorToFuture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.CancellationException;
1919
import java.util.concurrent.CountDownLatch;

rxjava-core/src/main/java/rx/operators/BlockingOperatorToIterator.java renamed to rxjava-core/src/main/java/rx/internal/operators/BlockingOperatorToIterator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.Iterator;
1919
import java.util.NoSuchElementException;

rxjava-core/src/main/java/rx/operators/BufferUntilSubscriber.java renamed to rxjava-core/src/main/java/rx/internal/operators/BufferUntilSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.ConcurrentLinkedQueue;
1919
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;

rxjava-core/src/main/java/rx/operators/NotificationLite.java renamed to rxjava-core/src/main/java/rx/internal/operators/NotificationLite.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.io.Serializable;
1919

rxjava-core/src/main/java/rx/operators/OnSubscribeAmb.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeAmb.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.List;

rxjava-core/src/main/java/rx/operators/OnSubscribeCache.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
1919

rxjava-core/src/main/java/rx/operators/OnSubscribeCombineLatest.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeCombineLatest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.BitSet;

rxjava-core/src/main/java/rx/operators/OnSubscribeDefer.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeDefer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable;
1919
import rx.Observable.OnSubscribe;

rxjava-core/src/main/java/rx/operators/OnSubscribeDelay.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeDelay.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.TimeUnit;
1919

rxjava-core/src/main/java/rx/operators/OnSubscribeDelaySubscription.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeDelaySubscription.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.TimeUnit;
1919
import rx.Observable;

rxjava-core/src/main/java/rx/operators/OnSubscribeDelayWithSelector.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeDelayWithSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable;
1919
import rx.Observable.OnSubscribe;
2020
import rx.Subscriber;
2121
import rx.functions.Func0;
2222
import rx.functions.Func1;
23+
import rx.internal.operators.OnSubscribeDelay.Emitter;
2324
import rx.observers.SerializedSubscriber;
24-
import rx.operators.OnSubscribeDelay.Emitter;
2525
import rx.subscriptions.CompositeSubscription;
2626

2727
/**

rxjava-core/src/main/java/rx/operators/OnSubscribeFromIterable.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeFromIterable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.OnSubscribe;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OnSubscribeGroupJoin.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeGroupJoin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.HashMap;

rxjava-core/src/main/java/rx/operators/OnSubscribeJoin.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeJoin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.HashMap;

rxjava-core/src/main/java/rx/operators/OnSubscribeMulticastSelector.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeMulticastSelector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable;
1919
import rx.Observable.OnSubscribe;

rxjava-core/src/main/java/rx/operators/OnSubscribeRange.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeRange.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.OnSubscribe;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OnSubscribeRefCount.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeRefCount.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.List;

rxjava-core/src/main/java/rx/operators/OnSubscribeTimerOnce.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeTimerOnce.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.TimeUnit;
1919
import rx.Observable.OnSubscribe;

rxjava-core/src/main/java/rx/operators/OnSubscribeTimerPeriodically.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeTimerPeriodically.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.TimeUnit;
1919
import rx.Observable.OnSubscribe;

rxjava-core/src/main/java/rx/operators/OnSubscribeToObservableFuture.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeToObservableFuture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.Future;
1919
import java.util.concurrent.TimeUnit;

rxjava-core/src/main/java/rx/operators/OnSubscribeUsing.java renamed to rxjava-core/src/main/java/rx/internal/operators/OnSubscribeUsing.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable;
1919
import rx.Observable.OnSubscribe;

rxjava-core/src/main/java/rx/operators/OperatorAll.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorAll.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OperatorAny.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorAny.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818

1919
import rx.Observable;

rxjava-core/src/main/java/rx/operators/OperatorAsObservable.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorAsObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OperatorBufferWithSingleObservable.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorBufferWithSingleObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.List;

rxjava-core/src/main/java/rx/operators/OperatorBufferWithSize.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorBufferWithSize.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.Iterator;

rxjava-core/src/main/java/rx/operators/OperatorBufferWithStartEndObservable.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorBufferWithStartEndObservable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.Iterator;

rxjava-core/src/main/java/rx/operators/OperatorBufferWithTime.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorBufferWithTime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.ArrayList;
1919
import java.util.Iterator;

rxjava-core/src/main/java/rx/operators/OperatorCast.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorCast.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OperatorConcat.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorConcat.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.ConcurrentLinkedQueue;
1919
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;

rxjava-core/src/main/java/rx/operators/OperatorDebounceWithSelector.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDebounceWithSelector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable;
1919
import rx.Observable.Operator;
2020
import rx.Subscriber;
2121
import rx.functions.Func1;
22+
import rx.internal.operators.OperatorDebounceWithTime.DebounceState;
2223
import rx.observers.SerializedSubscriber;
23-
import rx.operators.OperatorDebounceWithTime.DebounceState;
2424
import rx.subscriptions.SerialSubscription;
2525

2626
/**

rxjava-core/src/main/java/rx/operators/OperatorDebounceWithTime.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDebounceWithTime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.concurrent.TimeUnit;
1919
import rx.Observable.Operator;

rxjava-core/src/main/java/rx/operators/OperatorDefaultIfEmpty.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDefaultIfEmpty.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OperatorDematerialize.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDematerialize.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Notification;
1919
import rx.Observable.Operator;

rxjava-core/src/main/java/rx/operators/OperatorDistinct.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDistinct.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import java.util.HashSet;
1919
import java.util.Set;

rxjava-core/src/main/java/rx/operators/OperatorDistinctUntilChanged.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDistinctUntilChanged.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* License for the specific language governing permissions and limitations under
1414
* the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

rxjava-core/src/main/java/rx/operators/OperatorDoOnEach.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorDoOnEach.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Observer;

rxjava-core/src/main/java/rx/operators/OperatorElementAt.java renamed to rxjava-core/src/main/java/rx/internal/operators/OperatorElementAt.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package rx.operators;
16+
package rx.internal.operators;
1717

1818
import rx.Observable.Operator;
1919
import rx.Subscriber;

0 commit comments

Comments
 (0)