[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-17 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r471837313 ## File path: sdks/go/pkg/beam/core/graph/xlang.go ## @@ -0,0 +1,129 @@ +// Licensed to the Apache Software Foundation (ASF) under one or more +//

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-06 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r466552912 ## File path: sdks/go/examples/xlang/wordcount/xlang_wordcount.go ## @@ -0,0 +1,107 @@ +// Licensed to the Apache Software Foundation (ASF) under one or

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-05 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r465879720 ## File path: sdks/go/pkg/beam/external.go ## @@ -16,10 +16,144 @@ package beam import ( + "context" + "fmt" +

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-05 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r464721180 ## File path: sdks/go/pkg/beam/external.go ## @@ -16,10 +16,151 @@ package beam import ( + "context" + "fmt" +

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-05 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r464721180 ## File path: sdks/go/pkg/beam/external.go ## @@ -16,10 +16,151 @@ package beam import ( + "context" + "fmt" +

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-04 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r465380821 ## File path: sdks/go/pkg/beam/external.go ## @@ -16,10 +16,151 @@ package beam import ( + "context" + "fmt" +

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-04 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r465380563 ## File path: sdks/go/pkg/beam/external.go ## @@ -16,10 +16,151 @@ package beam import ( + "context" + "fmt" +

[GitHub] [beam] lostluck commented on a change in pull request #12445: [BEAM-9919] Added an External Transform API to Go SDK

2020-08-03 Thread GitBox
lostluck commented on a change in pull request #12445: URL: https://github.com/apache/beam/pull/12445#discussion_r464717996 ## File path: sdks/go/examples/xlang/wordcount/xlang_wordcount.go ## @@ -0,0 +1,100 @@ +package main + +import ( + "context" + "flag" +