Back to Intellij Community

UseOptimizedEelFunctions

plugins/devkit/devkit-core/resources/inspectionDescriptions/UseOptimizedEelFunctions.html

2025.3-rc-2545 B
Original Source

Reports usage of standard Java I/O operations that may work inefficiently in a remote Eel environment.

When working with remote development, standard Java I/O operations like Files.readAllBytes() can be inefficient due to network communication overhead. This inspection suggests using optimized Eel API alternatives that are designed specifically for remote development scenarios.

Example:

// Inefficient for remote development:
byte[] data = Files.readAllBytes(path);

// Optimized Eel API:
byte[] data = EelFiles.readAllBytes(path);