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

jvmMain.com.apollographql.apollo.api.FileUpload.kt Maven / Gradle / Ivy

The newest version!
@file:JvmName("FileUpload")

package com.apollographql.apollo.api

import okio.buffer
import okio.source
import java.io.File

fun File.toUpload(contentType: String): DefaultUpload {
  return DefaultUpload.Builder()
      .content { sink ->
        source().buffer().use { sink.writeAll(it) }
      }
      .contentLength(length())
      .contentType(contentType)
      .fileName(name)
      .build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy