Skip to content

Added the window() operation. #337

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
240 changes: 228 additions & 12 deletions rxjava-core/src/main/java/rx/Observable.java

Large diffs are not rendered by default.

587 changes: 587 additions & 0 deletions rxjava-core/src/main/java/rx/operators/ChunkedOperation.java

Large diffs are not rendered by default.

681 changes: 87 additions & 594 deletions rxjava-core/src/main/java/rx/operators/OperationBuffer.java

Large diffs are not rendered by default.

660 changes: 660 additions & 0 deletions rxjava-core/src/main/java/rx/operators/OperationWindow.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/
package rx.util;

public interface BufferClosing {
public interface Closing {
// Tagging interface for objects which can close buffers.
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
*/
package rx.util;

public class BufferClosings {
public class Closings {

public static BufferClosing create() {
return new BufferClosing() {};
public static Closing create() {
return new Closing() {};
}

private BufferClosings() {
private Closings() {
// Prevent instantation.
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/
package rx.util;

public interface BufferOpening {
public interface Opening {
// Tagging interface for objects which can open buffers.
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
*/
package rx.util;

public class BufferOpenings {
public class Openings {

public static BufferOpening create() {
return new BufferOpening() {};
public static Opening create() {
return new Opening() {};
}

private BufferOpenings() {
private Openings() {
// Prevent instantation.
}
}