from google.protobuf.any_pb2 import Any
from statefun import StatefulFunctions
functions = StatefulFunctions()
@functions.bind("example/caller")
def caller_function(context, message):
"""A simple stateful function that sends a message to the user with id `user1`"""
user = User()
user.user_id = "user1"
user.name = "Seth"
envelope = Any()
envelope.Pack(user)
context.send("example/hello", user.user_id, envelope)
from google.protobuf.any_pb2 import Any
from statefun import StatefulFunctions
functions = StatefulFunctions()
@functions.bind("example/caller")
def caller_function(context, message):
"""A simple stateful function that sends a message to the user with id `user1`"""
user = User()
user.user_id = "user1"
user.name = "Seth"
envelope = Any()
envelope.Pack(user)
context.send("example/hello", user.user_id, envelope)
from google.protobuf.any_pb2 import Any
from statefun import StatefulFunctions
functions = StatefulFunctions()
@functions.bind("example/count")
def count_greeter(context, message):
"""Function that greets a user based on
the number of times it has been called"""
user = User()
message.Unpack(user)
state = context["count"]
if state is None:
state = Any()
state.Pack(Count(1))
output = generate_message(1, user)
else:
counter = Count()
state.Unpack(counter)
counter.value += 1
output = generate_message(counter.value, user)
state.Pack(counter)
context["count"] = state
print(output)
def generate_message(count, user):
if count == 1:
return "Hello " + user.name
elif count == 2:
return "Hello again!"
elif count == 3:
return "Third time's the charm"
else:
return "Hello for the " + count + "th time"