-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from muzzammilshahid/progressive-call-results
Implement progressive call results
- Loading branch information
Showing
7 changed files
with
206 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"log" | ||
"os" | ||
"os/signal" | ||
"time" | ||
|
||
"github.com/xconnio/xconn-go" | ||
) | ||
|
||
const procedureProgressDownload = "io.xconn.progress.download" | ||
|
||
func main() { | ||
// Create and connect a callee client to server | ||
ctx := context.Background() | ||
client := xconn.Client{} | ||
callee, err := client.Connect(ctx, "ws://localhost:8080/ws", "realm1") | ||
if err != nil { | ||
log.Fatalf("Failed to connect to server: %s", err) | ||
} | ||
defer func() { _ = callee.Leave() }() | ||
|
||
invocationHandler := func(ctx context.Context, invocation *xconn.Invocation) *xconn.Result { | ||
fileSize := 100 // Simulate a file size of 100 units | ||
for i := 0; i <= fileSize; i += 10 { | ||
progress := i * 100 / fileSize | ||
if err := invocation.SendProgress([]any{progress}, nil); err != nil { | ||
return &xconn.Result{Err: "wamp.error.canceled", Arguments: []any{err.Error()}} | ||
} | ||
time.Sleep(500 * time.Millisecond) // Simulate time taken for download | ||
} | ||
|
||
return &xconn.Result{Arguments: []any{"Download complete!"}} | ||
} | ||
|
||
registration, err := callee.Register(procedureProgressDownload, invocationHandler, nil) | ||
if err != nil { | ||
log.Fatalf("Failed to register method: %s", err) | ||
} | ||
defer func() { _ = callee.Unregister(registration.ID) }() | ||
|
||
sigChan := make(chan os.Signal, 1) | ||
signal.Notify(sigChan, os.Interrupt) | ||
select { | ||
case <-sigChan: | ||
case <-ctx.Done(): | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"log" | ||
|
||
"github.com/xconnio/xconn-go" | ||
) | ||
|
||
const procedureProgressDownload = "io.xconn.progress.download" | ||
|
||
func main() { | ||
// Create and connect a caller client to server | ||
ctx := context.Background() | ||
client := xconn.Client{} | ||
caller, err := client.Connect(ctx, "ws://localhost:8080/ws", "realm1") | ||
if err != nil { | ||
log.Fatalf("Failed to connect to server: %s", err) | ||
} | ||
defer func() { _ = caller.Leave() }() | ||
|
||
result, err := caller.CallProgress(ctx, procedureProgressDownload, nil, nil, nil, func(result *xconn.Result) { | ||
progress := result.Arguments[0] | ||
fmt.Printf("Download progress: %v%%\n", progress) | ||
}) | ||
if err != nil { | ||
log.Fatalf("Call failed: %s", err) | ||
} | ||
|
||
fmt.Println(result.Arguments[0]) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters