void serviceCloudEvent()

in invoker/core/src/main/java/com/google/cloud/functions/invoker/BackgroundFunctionExecutor.java [294:300]


    void serviceCloudEvent(CloudEvent cloudEvent) throws Exception {
      if (cloudEvent.getData() != null) {
        serviceLegacyEvent(CloudEvents.convertToLegacyEvent(cloudEvent));
      } else {
        throw new IllegalStateException("Event has no \"data\" component");
      }
    }