Example usage for org.eclipse.jgit.api TransportCommand setTimeout

List of usage examples for org.eclipse.jgit.api TransportCommand setTimeout

Introduction

In this page you can find the example usage for org.eclipse.jgit.api TransportCommand setTimeout.

Prototype

public C setTimeout(int timeout) 

Source Link

Document

Set timeout.

Usage

From source file:io.verticle.apex.commons.oss.repository.GitRepositoryService.java

License:Apache License

private void setTimeout(TransportCommand<?, ?> pull) {
    pull.setTimeout(this.timeout);
}