public class FhirIOPatientEverything extends PTransform<PCollection<FhirIOPatientEverything.PatientEverythingParameter>,FhirIOPatientEverything.Result>
Modifier and Type | Class and Description |
---|---|
static class |
FhirIOPatientEverything.PatientEverythingParameter
PatientEverythingParameter defines required attributes for a FHIR GetPatientEverything request
in
FhirIOPatientEverything . |
static class |
FhirIOPatientEverything.Result
The Result for a
FhirIOPatientEverything request. |
Modifier and Type | Field and Description |
---|---|
static TupleTag<HealthcareIOError<java.lang.String>> |
DEAD_LETTER
The tag for the deadletter output of FHIR Resources from a GetPatientEverything request.
|
static TupleTag<com.google.gson.JsonArray> |
OUT
The tag for the main output of FHIR Resources from a GetPatientEverything request.
|
name, resourceHints
Constructor and Description |
---|
FhirIOPatientEverything() |
Modifier and Type | Method and Description |
---|---|
FhirIOPatientEverything.Result |
expand(PCollection<FhirIOPatientEverything.PatientEverythingParameter> input)
Override this method to specify how this
PTransform should be expanded on the given
InputT . |
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setResourceHints, toString, validate, validate
public static final TupleTag<com.google.gson.JsonArray> OUT
public static final TupleTag<HealthcareIOError<java.lang.String>> DEAD_LETTER
public FhirIOPatientEverything.Result expand(PCollection<FhirIOPatientEverything.PatientEverythingParameter> input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PCollection<FhirIOPatientEverything.PatientEverythingParameter>,FhirIOPatientEverything.Result>