All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.cosmos.implementation.directconnectivity.rntbd.AsyncRntbdRequestRecord Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.61.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.directconnectivity.rntbd;

import io.netty.util.Timeout;
import io.netty.util.TimerTask;

import static com.azure.cosmos.implementation.guava25.base.Preconditions.checkNotNull;

public final class AsyncRntbdRequestRecord extends RntbdRequestRecord {

    private final RntbdRequestTimer timer;

    public AsyncRntbdRequestRecord(final RntbdRequestArgs args, final RntbdRequestTimer timer) {
        super(args);
        checkNotNull(timer, "expected non-null timer");
        this.timer = timer;
    }

    @Override
    public Timeout newTimeout(final TimerTask task) {
        return this.timer.newTimeout(task);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy