Here you can find the source of adjustServerTimeout(Duration clientTimeout)
static Duration adjustServerTimeout(Duration clientTimeout)
//package com.java2s; /*// w w w . j a v a 2s. co m * Copyright (c) Microsoft. All rights reserved. * Licensed under the MIT license. See LICENSE file in the project root for full license information. */ import java.time.Duration; public class Main { static Duration adjustServerTimeout(Duration clientTimeout) { return clientTimeout.minusMillis(100); } }