1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
mod trivial; pub use trivial::*; mod from_iter; pub use from_iter::{from_iter, repeat}; mod of; pub use of::{of, of_fn, of_option, of_result, of_sequence}; pub(crate) mod from_future; pub use from_future::{from_future, from_future_result}; pub(crate) mod interval; pub use interval::{interval, interval_at}; pub(crate) mod connectable_observable; pub use connectable_observable::{ ConnectableObservable, LocalConnectableObservable, SharedConnectableObservable, }; mod base; pub use base::*; pub mod from_fn; pub use from_fn::*; mod observable_all; pub use observable_all::*; mod observable_err; pub use observable_err::*; mod observable_next; pub use observable_next::*; mod observable_comp; use crate::prelude::*; pub use observable_comp::*; use crate::ops::default_if_empty::DefaultIfEmptyOp; use ops::{ box_it::{BoxOp, IntoBox}, delay::DelayOp, filter::FilterOp, first::FirstOrOp, last::LastOrOp, map::MapOp, merge::MergeOp, observe_on::ObserveOnOp, ref_count::{RefCount, RefCountCreator}, sample::SampleOp, scan::ScanOp, skip::SkipOp, skip_last::SkipLastOp, subscribe_on::SubscribeOnOP, take::TakeOp, take_last::TakeLastOp, take_until::TakeUntilOp, take_while::TakeWhileOp, throttle_time::{ThrottleEdge, ThrottleTimeOp}, zip::ZipOp, Accum, AverageOp, CountOp, MinMaxOp, ReduceOp, SumOp, }; use std::marker::PhantomData; use std::ops::{Add, Mul}; use std::time::{Duration, Instant}; pub trait Observable { type Item; type Err; /// emit only the first item emitted by an Observable #[inline] fn first(self) -> TakeOp<Self> where Self: Sized, { self.take(1) } /// emit only the first item emitted by an Observable #[inline] fn first_or(self, default: Self::Item) -> FirstOrOp<TakeOp<Self>, Self::Item> where Self: Sized, { FirstOrOp { source: self.first(), default, } } /// Emit only the last final item emitted by a source observable or a /// default item given. /// /// Completes right after emitting the single item. Emits error when /// source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::empty() /// .last_or(1234) /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 1234 /// ``` #[inline] fn last_or(self, default: Self::Item) -> LastOrOp<Self, Self::Item> where Self: Sized, { LastOrOp { source: self, default: Some(default), last: None, } } /// Emits only last final item emitted by a source observable. /// /// Completes right after emitting the single last item, or when source /// observable completed, being an empty one. Emits error when source /// observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(0..100) /// .last() /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 99 /// ``` fn last(self) -> LastOrOp<Self, Self::Item> where Self: Sized, { LastOrOp { source: self, default: None, last: None, } } /// Creates a new stream which calls a closure on each element and uses /// its return as the value. #[inline] fn map<B, F>(self, f: F) -> MapOp<Self, F> where Self: Sized, F: Fn(Self::Item) -> B, { MapOp { source: self, func: f, } } /// combine two Observables into one by merging their emissions /// /// # Example /// /// ``` /// # use rxrust::prelude::*; /// let numbers = Subject::new(); /// // crate a even stream by filter /// let even = numbers.clone().filter(|v| *v % 2 == 0); /// // crate an odd stream by filter /// let odd = numbers.clone().filter(|v| *v % 2 != 0); /// /// // merge odd and even stream again /// let merged = even.merge(odd); /// /// // attach observers /// merged.subscribe(|v: &i32| println!("{} ", v)); /// ``` #[inline] fn merge<S>(self, o: S) -> MergeOp<Self, S> where Self: Sized, S: Observable<Item = Self::Item, Err = Self::Err>, { MergeOp { source1: self, source2: o, } } /// Emit only those items from an Observable that pass a predicate test /// # Example /// /// ``` /// use rxrust:: prelude::*; /// /// let mut coll = vec![]; /// let coll_clone = coll.clone(); /// /// observable::from_iter(0..10) /// .filter(|v| *v % 2 == 0) /// .subscribe(|v| { coll.push(v); }); /// /// // only even numbers received. /// assert_eq!(coll, vec![0, 2, 4, 6, 8]); /// ``` #[inline] fn filter<F>(self, filter: F) -> FilterOp<Self, F> where Self: Sized, F: Fn(&Self::Item) -> bool, { FilterOp { source: self, filter, } } /// box an observable to a safety object and convert it to a simple type /// `BoxOp`, which only care `Item` and `Err` Observable emitted. /// /// # Example /// ``` /// use rxrust::prelude::*; /// use ops::box_it::LocalBoxOp; /// /// let mut boxed: LocalBoxOp<'_, i32, ()> = observable::of(1) /// .map(|v| v).box_it(); /// /// // BoxOp can box any observable type /// boxed = observable::empty().box_it(); /// /// boxed.subscribe(|_| {}); /// ``` #[inline] fn box_it<O: IntoBox<Self>>(self) -> BoxOp<O> where Self: Sized, BoxOp<O>: Observable<Item = Self::Item, Err = Self::Err>, { O::box_it(self) } /// Ignore the first `count` values emitted by the source Observable. /// /// `skip` returns an Observable that ignore the first `count` values /// emitted by the source Observable. If the source emits fewer than `count` /// values then 0 of its values are emitted. After that, it completes, /// regardless if the source completes. /// /// # Example /// Ignore the first 5 seconds of an infinite 1-second interval Observable /// /// ``` /// # use rxrust::prelude::*; /// /// observable::from_iter(0..10).skip(5).subscribe(|v| println!("{}", v)); /// // print logs: /// // 6 /// // 7 /// // 8 /// // 9 /// // 10 /// ``` #[inline] fn skip(self, count: u32) -> SkipOp<Self> where Self: Sized, { SkipOp { source: self, count, } } /// Ignore the last `count` values emitted by the source Observable. /// /// `skip_last` returns an Observable that ignore the last `count` values /// emitted by the source Observable. If the source emits fewer than `count` /// values then 0 of its values are emitted. /// It will not emit values until source Observable complete. /// /// # Example /// Skip the last 5 seconds of an infinite 1-second interval Observable /// /// ``` /// # use rxrust::prelude::*; /// /// observable::from_iter(0..10) /// .skip_last(5) /// .subscribe(|v| println!("{}", v)); /// /// // print logs: /// // 0 /// // 1 /// // 2 /// // 3 /// // 4 /// ``` #[inline] fn skip_last(self, count: usize) -> SkipLastOp<Self> where Self: Sized, { SkipLastOp { source: self, count, } } /// Emits only the first `count` values emitted by the source Observable. /// /// `take` returns an Observable that emits only the first `count` values /// emitted by the source Observable. If the source emits fewer than `count` /// values then all of its values are emitted. After that, it completes, /// regardless if the source completes. /// /// # Example /// Take the first 5 seconds of an infinite 1-second interval Observable /// /// ``` /// # use rxrust::prelude::*; /// /// observable::from_iter(0..10).take(5).subscribe(|v| println!("{}", v)); /// // print logs: /// // 0 /// // 1 /// // 2 /// // 3 /// // 4 /// ``` /// #[inline] fn take(self, count: u32) -> TakeOp<Self> where Self: Sized, { TakeOp { source: self, count, } } /// Emits the values emitted by the source Observable until a `notifier` /// Observable emits a value. /// /// `take_until` subscribes and begins mirroring the source Observable. It /// also monitors a second Observable, `notifier` that you provide. If the /// `notifier` emits a value, the output Observable stops mirroring the source /// Observable and completes. If the `notifier` doesn't emit any value and /// completes then `take_until` will pass all values. #[inline] fn take_until<T>(self, notifier: T) -> TakeUntilOp<Self, T> where Self: Sized, { TakeUntilOp { source: self, notifier, } } /// Emits values while result of an callback is true. /// /// `take_while` returns an Observable that emits values while result of an /// callback is true emitted by the source Observable. /// It will not emit values until source Observable complete. /// /// # Example /// Take the first 5 seconds of an infinite 1-second interval Observable /// /// ``` /// # use rxrust::prelude::*; /// /// observable::from_iter(0..10) /// .take_while(|v| v < &5) /// .subscribe(|v| println!("{}", v)); /// // print logs: /// // 0 /// // 1 /// // 2 /// // 3 /// // 4 /// ``` /// #[inline] fn take_while<F>(self, callback: F) -> TakeWhileOp<Self, F> where Self: Sized, F: FnMut(&Self::Item) -> bool, { TakeWhileOp { source: self, callback, } } /// Emits only the last `count` values emitted by the source Observable. /// /// `take_last` returns an Observable that emits only the last `count` values /// emitted by the source Observable. If the source emits fewer than `count` /// values then all of its values are emitted. /// It will not emit values until source Observable complete. /// /// # Example /// Take the last 5 seconds of an infinite 1-second interval Observable /// /// ``` /// # use rxrust::prelude::*; /// /// observable::from_iter(0..10) /// .take_last(5) /// .subscribe(|v| println!("{}", v)); /// // print logs: /// // 5 /// // 6 /// // 7 /// // 8 /// // 9 /// ``` /// #[inline] fn take_last(self, count: usize) -> TakeLastOp<Self> where Self: Sized, { TakeLastOp { source: self, count, } } /// Emits item it has most recently emitted since the previous sampling /// /// /// It will emit values when sampling observable complete. /// /// #Example /// Sampling every 5ms of an infinite 1ms interval Observable /// ``` /// use rxrust::prelude::*; /// use std::time::Duration; /// /// observable::interval(Duration::from_millis(2)) /// .sample(observable::interval(Duration::from_millis(5))) /// .to_shared() /// .subscribe(move |v| println!("{}", v)); /// /// // print logs: /// // 1 /// // 4 /// // 6 /// // 9 /// // ... /// ``` #[inline] fn sample<O>(self, sampling: O) -> SampleOp<Self, O> where Self: Sized, O: Observable, { SampleOp { source: self, sampling, } } /// The Scan operator applies a function to the first item emitted by the /// source observable and then emits the result of that function as its /// own first emission. It also feeds the result of the function back into /// the function along with the second item emitted by the source observable /// in order to generate its second emission. It continues to feed back its /// own subsequent emissions along with the subsequent emissions from the /// source Observable in order to create the rest of its sequence. /// /// Applies a binary operator closure to each item emitted from source /// observable and emits successive values. /// /// Completes when source observable completes. /// Emits error when source observable emits it. /// /// This version starts with an user-specified initial value for when the /// binary operator is called with the first item processed. /// /// # Arguments /// /// * `initial_value` - An initial value to start the successive accumulations /// from. /// * `binary_op` - A closure or function acting as a binary operator. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![1, 1, 1, 1, 1]) /// .scan_initial(100, |acc, v| acc + v) /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 101 /// // 102 /// // 103 /// // 104 /// // 105 /// ``` #[inline] fn scan_initial<OutputItem, BinaryOp>( self, initial_value: OutputItem, binary_op: BinaryOp, ) -> ScanOp<Self, BinaryOp, OutputItem> where Self: Sized, BinaryOp: Fn(OutputItem, Self::Item) -> OutputItem, OutputItem: Clone, { ScanOp { source_observable: self, binary_op, initial_value, } } /// Works like [`scan_initial`](Observable::scan_initial) but starts with a /// value defined by a [`Default`] trait for the first argument `binary_op` /// operator operates on. /// /// # Arguments /// /// * `binary_op` - A closure or function acting as a binary operator. #[inline] fn scan<OutputItem, BinaryOp>( self, binary_op: BinaryOp, ) -> ScanOp<Self, BinaryOp, OutputItem> where Self: Sized, BinaryOp: Fn(OutputItem, Self::Item) -> OutputItem, OutputItem: Default + Clone, { self.scan_initial(OutputItem::default(), binary_op) } /// Apply a function to each item emitted by an observable, sequentially, /// and emit the final value, after source observable completes. /// /// Emits error when source observable emits it. /// /// # Arguments /// /// * `initial` - An initial value to start the successive reduction from. /// * `binary_op` - A closure acting as a binary (folding) operator. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![1, 1, 1, 1, 1]) /// .reduce_initial(100, |acc, v| acc + v) /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 105 /// ``` fn reduce_initial<OutputItem, BinaryOp>( self, initial: OutputItem, binary_op: BinaryOp, ) -> ReduceOp<Self, BinaryOp, OutputItem> where Self: Sized, BinaryOp: Fn(OutputItem, Self::Item) -> OutputItem, OutputItem: Clone, { // realised as a composition of `scan`, and `last` self .scan_initial(initial.clone(), binary_op) .last_or(initial) } /// Works like [`reduce_initial`](Observable::reduce_initial) but starts with /// a value defined by a [`Default`] trait for the first argument `f` /// operator operates on. /// /// # Arguments /// /// * `binary_op` - A closure acting as a binary operator. #[inline] fn reduce<OutputItem, BinaryOp>( self, binary_op: BinaryOp, ) -> LastOrOp<ScanOp<Self, BinaryOp, OutputItem>, OutputItem> where Self: Sized, BinaryOp: Fn(OutputItem, Self::Item) -> OutputItem, OutputItem: Default + Clone, { self.reduce_initial(OutputItem::default(), binary_op) } /// Emits the item from the source observable that had the maximum value. /// /// Emits error when source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![3., 4., 7., 5., 6.]) /// .max() /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 7 /// ``` fn max(self) -> MinMaxOp<Self, Self::Item> where Self: Sized, Self::Item: PayloadCopy + Send + PartialOrd<Self::Item>, { fn get_greater<Item>(i: Option<Item>, v: Item) -> Option<Item> where Item: PayloadCopy + PartialOrd<Item>, { i.map(|vv| if vv < v { v.payload_copy() } else { vv }) .or(Some(v)) } let get_greater_func = get_greater as fn(Option<Self::Item>, Self::Item) -> Option<Self::Item>; self .scan_initial(None, get_greater_func) .last() // we can safely unwrap, because we will ever get this item // once a max value exists and is there. .map(|v| v.unwrap()) } /// Emits the item from the source observable that had the minimum value. /// /// Emits error when source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![3., 4., 7., 5., 6.]) /// .min() /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 3 /// ``` fn min(self) -> MinMaxOp<Self, Self::Item> where Self: Sized, Self::Item: PayloadCopy + Send + PartialOrd<Self::Item>, { fn get_lesser<Item>(i: Option<Item>, v: Item) -> Option<Item> where Item: PayloadCopy + PartialOrd<Item>, { i.map(|vv| if vv > v { v.payload_copy() } else { vv }) .or(Some(v)) } let get_lesser_func = get_lesser as fn(Option<Self::Item>, Self::Item) -> Option<Self::Item>; self .scan_initial(None, get_lesser_func) .last() // we can safely unwrap, because we will ever get this item // once a max value exists and is there. .map(|v| v.unwrap()) } /// Calculates the sum of numbers emitted by an source observable and emits /// this sum when source completes. /// /// Emits zero when source completed as an and empty sequence. /// Emits error when source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![1, 1, 1, 1, 1]) /// .sum() /// .subscribe(|v| println!("{}", v)); /// /// // p rint log: /// // 5 /// ``` #[inline] fn sum(self) -> SumOp<Self, Self::Item> where Self: Sized, Self::Item: PayloadCopy + Default + Add<Self::Item, Output = Self::Item>, { self.reduce(|acc, v| acc + v) } /// Emits the number of items emitted by a source observable when this source /// completes. /// /// The output type of this operator is fixed to [`usize`]. /// /// Emits zero when source completed as an and empty sequence. /// Emits error when source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec!['1', '7', '3', '0', '4']) /// .count() /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 5 /// ``` #[inline] fn count(self) -> CountOp<Self, Self::Item> where Self: Sized, { self.reduce(|acc, _v| acc + 1) } /// Calculates the sum of numbers emitted by an source observable and emits /// this sum when source completes. /// /// Emits zero when source completed as an and empty sequence. /// Emits error when source observable emits it. /// /// # Examples /// /// ``` /// use rxrust::prelude::*; /// /// observable::from_iter(vec![3., 4., 5., 6., 7.]) /// .average() /// .subscribe(|v| println!("{}", v)); /// /// // print log: /// // 5 /// ``` fn average(self) -> AverageOp<Self, Self::Item> where Self: Sized, Self::Item: PayloadCopy + Send + Default + Add<Self::Item, Output = Self::Item> + Mul<f64, Output = Self::Item>, { /// Computing an average by multiplying accumulated nominator by a /// reciprocal of accumulated denominator. In this way some generic /// types that support linear scaling over floats values could be /// averaged (e.g. vectors) fn average_floats<T>(acc: Accum<T>) -> T where T: Default + PayloadCopy + Send + Mul<f64, Output = T>, { // Note: we will never be dividing by zero here, as // the acc.1 will be always >= 1. // It would have be zero if we've would have received an element // when the source observable is empty but beacuse of how // `scan` works, we will transparently not receive anything in // such case. acc.0 * (1.0 / (acc.1 as f64)) } fn accumulate_item<T>(acc: Accum<T>, v: T) -> Accum<T> where T: PayloadCopy + Add<T, Output = T>, { let newacc = acc.0 + v; let newcount = acc.1 + 1; (newacc, newcount) } // our starting point let start = (Self::Item::default(), 0); let acc = accumulate_item as fn(Accum<Self::Item>, Self::Item) -> Accum<Self::Item>; let avg = average_floats as fn(Accum<Self::Item>) -> Self::Item; self.scan_initial(start, acc).last().map(avg) } /// Returns a ConnectableObservable. A ConnectableObservable Observable /// resembles an ordinary Observable, except that it does not begin emitting /// items when it is subscribed to, but only when the Connect operator is /// applied to it. In this way you can wait for all intended observers to /// subscribe to the Observable before the Observable begins emitting items. #[inline] fn publish<Subject: Default>(self) -> ConnectableObservable<Self, Subject> where Self: Sized, { ConnectableObservable { source: self, subject: Subject::default(), } } /// Returns a new Observable that multicast (shares) the original /// Observable. As long as there is at least one Subscriber this /// Observable will be subscribed and emitting data. When all subscribers /// have unsubscribed it will unsubscribe from the source Observable. /// Because the Observable is multicasting it makes the stream `hot`. /// This is an alias for `publish().ref_count()` #[inline] fn share<Subject, Inner>( self, ) -> RefCount<Inner, ConnectableObservable<Self, Subject>> where Inner: RefCountCreator<Connectable = ConnectableObservable<Self, Subject>>, Subject: Default, Self: Sized + Clone, { self.publish::<Subject>().ref_count::<Inner>() } /// Delays the emission of items from the source Observable by a given timeout /// or until a given `Instant`. #[inline] fn delay(self, dur: Duration) -> DelayOp<Self> where Self: Sized, { DelayOp { source: self, delay: dur, } } #[inline] fn delay_at(self, at: Instant) -> DelayOp<Self> where Self: Sized, { DelayOp { source: self, delay: at.elapsed(), } } /// Specify the Scheduler on which an Observable will operate /// /// With `SubscribeON` you can decide what type of scheduler a specific /// Observable will be using when it is subscribed to. /// /// Schedulers control the speed and order of emissions to observers from an /// Observable stream. /// /// # Example /// Given the following code: /// ```rust /// use rxrust::prelude::*; /// /// let a = observable::from_iter(1..5); /// let b = observable::from_iter(5..10); /// a.merge(b).subscribe(|v| print!("{} ", v)); /// ``` /// /// Both Observable `a` and `b` will emit their values directly and /// synchronously once they are subscribed to. /// This will result in the output of `1 2 3 4 5 6 7 8 9`. /// /// But if we instead use the `subscribe_on` operator declaring that we want /// to use the new thread scheduler for values emitted by Observable `a`: /// ```rust /// use rxrust::prelude::*; /// use rxrust::scheduler::Schedulers; /// use std::thread; /// /// let a = observable::from_iter(1..5).subscribe_on(Schedulers::NewThread); /// let b = observable::from_iter(5..10); /// a.merge(b).to_shared().subscribe(|v|{ /// let handle = thread::current(); /// print!("{}({:?}) ", v, handle.id()) /// }); /// ``` /// /// The output will instead by `1(thread 1) 2(thread 1) 3(thread 1) 4(thread /// 1) 5(thread 2) 6(thread 2) 7(thread 2) 8(thread 2) 9(thread id2)`. /// The reason for this is that Observable `b` emits its values directly like /// before, but the emissions from `a` are scheduled on a new thread because /// we are now using the `NewThread` Scheduler for that specific Observable. #[inline] fn subscribe_on<SD>(self, scheduler: SD) -> SubscribeOnOP<Self, SD> where Self: Sized, { SubscribeOnOP { source: self, scheduler, } } /// Re-emits all notifications from source Observable with specified /// scheduler. /// /// `ObserveOn` is an operator that accepts a scheduler as the parameter, /// which will be used to reschedule notifications emitted by the source /// Observable. #[inline] fn observe_on<'a, SD>(self, scheduler: SD) -> ObserveOnOp<'a, Self, SD> where Self: Sized, { ObserveOnOp { source: self, scheduler, _p: PhantomData, } } /// Emits a value from the source Observable, then ignores subsequent source /// values for duration milliseconds, then repeats this process. /// /// #Example /// ``` /// use rxrust::{ prelude::*, ops::throttle_time::ThrottleEdge }; /// use std::time::Duration; /// /// observable::interval(Duration::from_millis(1)) /// .to_shared() /// .throttle_time(Duration::from_millis(9), ThrottleEdge::Leading) /// .to_shared() /// .subscribe(move |v| println!("{}", v)); /// ``` #[inline] fn throttle_time( self, duration: Duration, edge: ThrottleEdge, ) -> ThrottleTimeOp<Self> where Self: Sized, { ThrottleTimeOp { source: self, duration, edge, } } /// 'Zips up' two observable into a single observable of pairs. /// /// zip() returns a new observable that will emit over two other /// observables, returning a tuple where the first element comes from the /// first observable, and the second element comes from the second /// observable. /// /// In other words, it zips two observables together, into a single one. #[inline] fn zip<U>(self, other: U) -> ZipOp<Self, U> where Self: Sized, U: Observable, { ZipOp { a: self, b: other } } /// Emits default value if Observable completed with empty result /// /// #Example /// ``` /// use rxrust::prelude::*; /// /// observable::empty() /// .default_if_empty(5) /// .subscribe(|v| println!("{}", v)); /// /// // Prints: /// // 5 /// ``` #[inline] fn default_if_empty(self, default_value: Self::Item) -> DefaultIfEmptyOp<Self> where Self: Sized, { DefaultIfEmptyOp { source: self, is_empty: true, default_value, } } } pub trait LocalObservable<'a>: Observable { type Unsub: SubscriptionLike + 'static; fn actual_subscribe<O: Observer<Self::Item, Self::Err> + 'a>( self, subscriber: Subscriber<O, LocalSubscription>, ) -> Self::Unsub; } #[doc(hidden)] pub(crate) macro observable_proxy_impl( $ty: ident , $host: ident $(, $lf: lifetime)? $(, $generics: ident) * ) { impl<$($lf, )? $host, $($generics ,)*> Observable for $ty<$($lf, )? $host, $($generics ,)*> where $host: Observable { type Item = $host::Item; type Err = $host::Err; } }