Example usage for org.springframework.boot.devtools.restart.classloader ClassLoaderFiles size

List of usage examples for org.springframework.boot.devtools.restart.classloader ClassLoaderFiles size

Introduction

In this page you can find the example usage for org.springframework.boot.devtools.restart.classloader ClassLoaderFiles size.

Prototype

public int size() 

Source Link

Document

Return the size of the collection.

Usage

From source file:org.springframework.boot.devtools.remote.client.ClassPathChangeUploader.java

private void logUpload(ClassLoaderFiles classLoaderFiles) {
    int size = classLoaderFiles.size();
    logger.info("Uploaded " + size + " class " + (size == 1 ? "resource" : "resources"));
}