From eb2da269b03b700b7e325e2673fab417a812f4c8 Mon Sep 17 00:00:00 2001 From: Elijah Verdoorn Date: Thu, 5 Sep 2019 10:10:54 -0700 Subject: [PATCH] Add license header to source files --- src/main/kotlin/backpressure/KtBackpressure.kt | 15 +++++++++++++++ src/main/kotlin/backpressure/RxBackpressure.kt | 15 +++++++++++++++ src/main/kotlin/backpressure/TestBackpressure.kt | 15 +++++++++++++++ src/main/kotlin/cancel/KtCancel.kt | 15 +++++++++++++++ src/main/kotlin/cancel/RxCancel.kt | 15 +++++++++++++++ src/main/kotlin/cancel/TestCancel.kt | 15 +++++++++++++++ src/main/kotlin/completable/KtCompletable.kt | 15 +++++++++++++++ src/main/kotlin/completable/RxCompletable.kt | 15 +++++++++++++++ src/main/kotlin/completable/TestCompletable.kt | 15 +++++++++++++++ src/main/kotlin/filter/KtFilter.kt | 15 +++++++++++++++ src/main/kotlin/filter/RxFilter.kt | 15 +++++++++++++++ src/main/kotlin/filter/TestFilter.kt | 15 +++++++++++++++ src/main/kotlin/flatmap/KtFlatMap.kt | 15 +++++++++++++++ src/main/kotlin/flatmap/RxFlatMap.kt | 15 +++++++++++++++ src/main/kotlin/flatmap/TestFlatMap.kt | 15 +++++++++++++++ src/main/kotlin/interval/KtInterval.kt | 15 +++++++++++++++ src/main/kotlin/interval/RxInterval.kt | 15 +++++++++++++++ src/main/kotlin/interval/TestInterval.kt | 15 +++++++++++++++ src/main/kotlin/map/KtMap.kt | 15 +++++++++++++++ src/main/kotlin/map/RxMap.kt | 15 +++++++++++++++ src/main/kotlin/map/TestMap.kt | 15 +++++++++++++++ src/main/kotlin/maybe/KtMaybe.kt | 15 +++++++++++++++ src/main/kotlin/maybe/RxMaybe.kt | 15 +++++++++++++++ src/main/kotlin/maybe/TestMaybe.kt | 15 +++++++++++++++ src/main/kotlin/merge/KtMerge.kt | 15 +++++++++++++++ src/main/kotlin/merge/RxMerge.kt | 15 +++++++++++++++ src/main/kotlin/merge/TestMerge.kt | 15 +++++++++++++++ src/main/kotlin/retry/KtRetry.kt | 15 +++++++++++++++ src/main/kotlin/retry/RxRetry.kt | 15 +++++++++++++++ src/main/kotlin/retry/TestRetry.kt | 15 +++++++++++++++ src/main/kotlin/single/KtSingle.kt | 15 +++++++++++++++ src/main/kotlin/single/RxSingle.kt | 15 +++++++++++++++ src/main/kotlin/single/TestSingle.kt | 15 +++++++++++++++ src/main/kotlin/timeout/KtTimeout.kt | 15 +++++++++++++++ src/main/kotlin/timeout/RxTimeout.kt | 16 +++++++++++++++- src/main/kotlin/timeout/TestTimeout.kt | 15 +++++++++++++++ 36 files changed, 540 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/backpressure/KtBackpressure.kt b/src/main/kotlin/backpressure/KtBackpressure.kt index afc335a..5d7dd33 100644 --- a/src/main/kotlin/backpressure/KtBackpressure.kt +++ b/src/main/kotlin/backpressure/KtBackpressure.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.backpressure import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/backpressure/RxBackpressure.kt b/src/main/kotlin/backpressure/RxBackpressure.kt index 5549c84..f11fb94 100644 --- a/src/main/kotlin/backpressure/RxBackpressure.kt +++ b/src/main/kotlin/backpressure/RxBackpressure.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.backpressure import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/backpressure/TestBackpressure.kt b/src/main/kotlin/backpressure/TestBackpressure.kt index e534e53..00baeef 100644 --- a/src/main/kotlin/backpressure/TestBackpressure.kt +++ b/src/main/kotlin/backpressure/TestBackpressure.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.backpressure fun main() { diff --git a/src/main/kotlin/cancel/KtCancel.kt b/src/main/kotlin/cancel/KtCancel.kt index 01728e2..aa870cf 100644 --- a/src/main/kotlin/cancel/KtCancel.kt +++ b/src/main/kotlin/cancel/KtCancel.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.cancel import kotlinx.coroutines.* diff --git a/src/main/kotlin/cancel/RxCancel.kt b/src/main/kotlin/cancel/RxCancel.kt index e63ac20..9cae1db 100644 --- a/src/main/kotlin/cancel/RxCancel.kt +++ b/src/main/kotlin/cancel/RxCancel.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.cancel import io.reactivex.rxjava3.core.Completable diff --git a/src/main/kotlin/cancel/TestCancel.kt b/src/main/kotlin/cancel/TestCancel.kt index f324dab..747354d 100644 --- a/src/main/kotlin/cancel/TestCancel.kt +++ b/src/main/kotlin/cancel/TestCancel.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.cancel fun main() { diff --git a/src/main/kotlin/completable/KtCompletable.kt b/src/main/kotlin/completable/KtCompletable.kt index 0d71a53..cebcd8c 100644 --- a/src/main/kotlin/completable/KtCompletable.kt +++ b/src/main/kotlin/completable/KtCompletable.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.completable import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/completable/RxCompletable.kt b/src/main/kotlin/completable/RxCompletable.kt index c6fae4a..e7e4cce 100644 --- a/src/main/kotlin/completable/RxCompletable.kt +++ b/src/main/kotlin/completable/RxCompletable.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.completable import io.reactivex.rxjava3.core.Completable diff --git a/src/main/kotlin/completable/TestCompletable.kt b/src/main/kotlin/completable/TestCompletable.kt index 9be7387..8beb4f0 100644 --- a/src/main/kotlin/completable/TestCompletable.kt +++ b/src/main/kotlin/completable/TestCompletable.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.completable fun main() { diff --git a/src/main/kotlin/filter/KtFilter.kt b/src/main/kotlin/filter/KtFilter.kt index 1df5683..faf74c1 100644 --- a/src/main/kotlin/filter/KtFilter.kt +++ b/src/main/kotlin/filter/KtFilter.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.filter import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/filter/RxFilter.kt b/src/main/kotlin/filter/RxFilter.kt index 061054e..3aab424 100644 --- a/src/main/kotlin/filter/RxFilter.kt +++ b/src/main/kotlin/filter/RxFilter.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.filter import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/filter/TestFilter.kt b/src/main/kotlin/filter/TestFilter.kt index ce93057..6176a0c 100644 --- a/src/main/kotlin/filter/TestFilter.kt +++ b/src/main/kotlin/filter/TestFilter.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.filter fun main() { diff --git a/src/main/kotlin/flatmap/KtFlatMap.kt b/src/main/kotlin/flatmap/KtFlatMap.kt index f25317d..99d4a9d 100644 --- a/src/main/kotlin/flatmap/KtFlatMap.kt +++ b/src/main/kotlin/flatmap/KtFlatMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.flatmap import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/flatmap/RxFlatMap.kt b/src/main/kotlin/flatmap/RxFlatMap.kt index e0de4eb..a3f04e2 100644 --- a/src/main/kotlin/flatmap/RxFlatMap.kt +++ b/src/main/kotlin/flatmap/RxFlatMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.flatmap import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/flatmap/TestFlatMap.kt b/src/main/kotlin/flatmap/TestFlatMap.kt index c15f64e..89aa75c 100644 --- a/src/main/kotlin/flatmap/TestFlatMap.kt +++ b/src/main/kotlin/flatmap/TestFlatMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.flatmap fun main() { diff --git a/src/main/kotlin/interval/KtInterval.kt b/src/main/kotlin/interval/KtInterval.kt index 7a7b5d9..32f42e4 100644 --- a/src/main/kotlin/interval/KtInterval.kt +++ b/src/main/kotlin/interval/KtInterval.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.interval import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/interval/RxInterval.kt b/src/main/kotlin/interval/RxInterval.kt index 164323d..117d538 100644 --- a/src/main/kotlin/interval/RxInterval.kt +++ b/src/main/kotlin/interval/RxInterval.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.interval import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/interval/TestInterval.kt b/src/main/kotlin/interval/TestInterval.kt index b966d0a..b5027db 100644 --- a/src/main/kotlin/interval/TestInterval.kt +++ b/src/main/kotlin/interval/TestInterval.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.interval fun main() { diff --git a/src/main/kotlin/map/KtMap.kt b/src/main/kotlin/map/KtMap.kt index 45d050a..be8c0d2 100644 --- a/src/main/kotlin/map/KtMap.kt +++ b/src/main/kotlin/map/KtMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.map import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/map/RxMap.kt b/src/main/kotlin/map/RxMap.kt index 504379f..6552bb3 100644 --- a/src/main/kotlin/map/RxMap.kt +++ b/src/main/kotlin/map/RxMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.map import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/map/TestMap.kt b/src/main/kotlin/map/TestMap.kt index dab57bb..8032cca 100644 --- a/src/main/kotlin/map/TestMap.kt +++ b/src/main/kotlin/map/TestMap.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.map fun main() { diff --git a/src/main/kotlin/maybe/KtMaybe.kt b/src/main/kotlin/maybe/KtMaybe.kt index bc51fdc..970a161 100644 --- a/src/main/kotlin/maybe/KtMaybe.kt +++ b/src/main/kotlin/maybe/KtMaybe.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.maybe import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/maybe/RxMaybe.kt b/src/main/kotlin/maybe/RxMaybe.kt index 049b4f3..7253f10 100644 --- a/src/main/kotlin/maybe/RxMaybe.kt +++ b/src/main/kotlin/maybe/RxMaybe.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.maybe import io.reactivex.rxjava3.core.Maybe diff --git a/src/main/kotlin/maybe/TestMaybe.kt b/src/main/kotlin/maybe/TestMaybe.kt index 4208629..dc005d7 100644 --- a/src/main/kotlin/maybe/TestMaybe.kt +++ b/src/main/kotlin/maybe/TestMaybe.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.maybe fun main() { diff --git a/src/main/kotlin/merge/KtMerge.kt b/src/main/kotlin/merge/KtMerge.kt index 7588fd2..2c312ae 100644 --- a/src/main/kotlin/merge/KtMerge.kt +++ b/src/main/kotlin/merge/KtMerge.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.merge import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/merge/RxMerge.kt b/src/main/kotlin/merge/RxMerge.kt index 063c225..6d83007 100644 --- a/src/main/kotlin/merge/RxMerge.kt +++ b/src/main/kotlin/merge/RxMerge.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.merge import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/merge/TestMerge.kt b/src/main/kotlin/merge/TestMerge.kt index 64032d6..b10da99 100644 --- a/src/main/kotlin/merge/TestMerge.kt +++ b/src/main/kotlin/merge/TestMerge.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.merge fun main() { diff --git a/src/main/kotlin/retry/KtRetry.kt b/src/main/kotlin/retry/KtRetry.kt index d623b79..fa40ce6 100644 --- a/src/main/kotlin/retry/KtRetry.kt +++ b/src/main/kotlin/retry/KtRetry.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.retry import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/retry/RxRetry.kt b/src/main/kotlin/retry/RxRetry.kt index c39936a..ddab77c 100644 --- a/src/main/kotlin/retry/RxRetry.kt +++ b/src/main/kotlin/retry/RxRetry.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.retry import io.reactivex.rxjava3.core.Flowable diff --git a/src/main/kotlin/retry/TestRetry.kt b/src/main/kotlin/retry/TestRetry.kt index f9b28cf..f863318 100644 --- a/src/main/kotlin/retry/TestRetry.kt +++ b/src/main/kotlin/retry/TestRetry.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.retry fun main() { diff --git a/src/main/kotlin/single/KtSingle.kt b/src/main/kotlin/single/KtSingle.kt index 0c158a9..03bdd3b 100644 --- a/src/main/kotlin/single/KtSingle.kt +++ b/src/main/kotlin/single/KtSingle.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.single import kotlinx.coroutines.CoroutineScope diff --git a/src/main/kotlin/single/RxSingle.kt b/src/main/kotlin/single/RxSingle.kt index 13c6392..5224456 100644 --- a/src/main/kotlin/single/RxSingle.kt +++ b/src/main/kotlin/single/RxSingle.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.single import io.reactivex.rxjava3.core.Scheduler diff --git a/src/main/kotlin/single/TestSingle.kt b/src/main/kotlin/single/TestSingle.kt index 2521303..9b2ac4c 100644 --- a/src/main/kotlin/single/TestSingle.kt +++ b/src/main/kotlin/single/TestSingle.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.single fun main() { diff --git a/src/main/kotlin/timeout/KtTimeout.kt b/src/main/kotlin/timeout/KtTimeout.kt index 5e38e94..295c325 100644 --- a/src/main/kotlin/timeout/KtTimeout.kt +++ b/src/main/kotlin/timeout/KtTimeout.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.timeout import kotlinx.coroutines.* diff --git a/src/main/kotlin/timeout/RxTimeout.kt b/src/main/kotlin/timeout/RxTimeout.kt index 9a10b1e..af6a48a 100644 --- a/src/main/kotlin/timeout/RxTimeout.kt +++ b/src/main/kotlin/timeout/RxTimeout.kt @@ -1,6 +1,20 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.timeout -import io.reactivex.rxjava3.core.Completable import io.reactivex.rxjava3.core.Flowable import io.reactivex.rxjava3.core.Scheduler import io.reactivex.rxjava3.schedulers.Schedulers diff --git a/src/main/kotlin/timeout/TestTimeout.kt b/src/main/kotlin/timeout/TestTimeout.kt index bf3f729..be97b69 100644 --- a/src/main/kotlin/timeout/TestTimeout.kt +++ b/src/main/kotlin/timeout/TestTimeout.kt @@ -1,3 +1,18 @@ +/* +* Copyright 2019 Pandora Media, LLC +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* See accompanying LICENSE file or you may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ package com.pandora.recipebook.timeout fun main() {