This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(AndroidJUnit4::class) | |
class OkHttpPlayerTest { | |
@Test | |
fun handlesFastCancellations() { | |
assumeInternet() | |
val context = InstrumentationRegistry.getInstrumentation().targetContext | |
val okHttpClient = OkHttpClient.Builder() | |
.build() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package okhttp3 | |
import java.io.IOException | |
import java.util.concurrent.CountDownLatch | |
import java.util.concurrent.TimeUnit | |
fun main() { | |
val client = OkHttpClient.Builder() | |
.pingInterval(2500, TimeUnit.MILLISECONDS) | |
.connectionPool(ConnectionPool(0, 1, TimeUnit.NANOSECONDS)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (C) 2014 Square, Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Configuration | |
@EnableRSocketSecurity | |
@EnableReactiveMethodSecurity | |
// https://spring.io/blog/2020/06/17/getting-started-with-rsocket-spring-security | |
class SecurityConfig { | |
@Bean | |
fun messageHandler(strategies: RSocketStrategies?): RSocketMessageHandler { | |
val mh = RSocketMessageHandler() | |
mh.argumentResolverConfigurer.addCustomResolver(AuthenticationPrincipalArgumentResolver()) | |
mh.rSocketStrategies = strategies!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env -S kotlinc-jvm -nowarn -script | |
@file:Repository("https://jcenter.bintray.com") | |
@file:Repository("https://oss.jfrog.org/oss-snapshot-local") | |
@file:DependsOn("io.rsocket.kotlin:rsocket-transport-ktor-client-jvm:0.13.0-SNAPSHOT") | |
@file:DependsOn("io.ktor:ktor-client-cio-jvm:1.5.0") | |
@file:CompilerOptions("-jvm-target", "1.8") | |
import io.ktor.client.* | |
import io.ktor.network.selector.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.myapplication | |
import android.annotation.SuppressLint | |
import android.os.Bundle | |
import android.security.KeyChain | |
import android.view.Menu | |
import android.view.MenuItem | |
import androidx.appcompat.app.AppCompatActivity | |
import com.google.android.material.floatingactionbutton.FloatingActionButton | |
import com.google.android.material.snackbar.Snackbar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "version": "0.2", "url": "https://github.com/yschimke/certifikit/releases/download/0.2.ys/cft.exe", "bin": "cft.exe" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "version": "0.2", "url": "https://github.com/yschimke/cooee-cli/releases/download/0.2/cooee.exe", "bin": "cooee.exe" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "version": "2.27", "url": "https://github.com/yschimke/okurl/releases/download/2.27/okurl.exe", "bin": "okurl.exe" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "version": "1.27", "url": "https://github.com/rsocket/rsocket-cli/releases/download/1.27/rsocketcli.exe", "bin": "rsocketcli.exe" } |