You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by dh...@apache.org on 2016/06/29 17:45:47 UTC

[2/2] incubator-beam git commit: Add direct runner package-info

Add direct runner package-info


Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/68872413
Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/68872413
Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/68872413

Branch: refs/heads/master
Commit: 68872413b27ae07135b785d66e5987929a68f6ae
Parents: ee51275
Author: Thomas Groh <tg...@google.com>
Authored: Tue Jun 14 16:16:39 2016 -0700
Committer: Dan Halperin <dh...@google.com>
Committed: Wed Jun 29 10:45:41 2016 -0700

----------------------------------------------------------------------
 .../beam/runners/direct/package-info.java       | 25 ++++++++++++++++++++
 1 file changed, 25 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/68872413/runners/direct-java/src/main/java/org/apache/beam/runners/direct/package-info.java
----------------------------------------------------------------------
diff --git a/runners/direct-java/src/main/java/org/apache/beam/runners/direct/package-info.java b/runners/direct-java/src/main/java/org/apache/beam/runners/direct/package-info.java
new file mode 100644
index 0000000..e6d4ead
--- /dev/null
+++ b/runners/direct-java/src/main/java/org/apache/beam/runners/direct/package-info.java
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * Defines the {@link org.apache.beam.sdk.options.PipelineOptions.DirectRunner}
+ * which executes both Bounded and Unbounded {@code Pipelines} on the local machine.
+ *
+ * <p>See {@link org.apache.beam.sdk.runners} for more information about Pipeline Runners.
+ */
+package org.apache.beam.runners.direct;