Show / Hide Table of Contents

Class PlayURPlugin.AppendableAction

An action that can have data for a given column appended-to over time. Can be updated frequently, and is updated to the server at a regular interval.

Inheritance
object
PlayURPlugin.UpdatableAction<string>
PlayURPlugin.AppendableAction
Implements
PlayURPlugin.IProcessAction
Inherited Members
PlayURPlugin.UpdatableAction<string>.action
PlayURPlugin.UpdatableAction<string>.uploadIntervalSeconds
PlayURPlugin.UpdatableAction<string>.Set(AnalyticsColumn, string)
PlayURPlugin.UpdatableAction<string>.Process()
Namespace: PlayUR
Assembly: PlayUR.dll
Syntax
public class PlayURPlugin.AppendableAction : PlayURPlugin.UpdatableAction<string>, PlayURPlugin.IProcessAction

Constructors

| Improve this Doc View Source

AppendableAction(Action, AnalyticsColumn)

Create an action that can be appended-to over time.

Declaration
public AppendableAction(Action action, AnalyticsColumn column)
Parameters
Type Name Description
Action action

The analytics action id to tag this action with

AnalyticsColumn column

The column to use for storing the data

| Improve this Doc View Source

AppendableAction(Action, AnalyticsColumn, string)

Create an action that can be appended-to over time, and set the initial data.

Declaration
public AppendableAction(Action action, AnalyticsColumn column, string initialData)
Parameters
Type Name Description
Action action

The analytics action id to tag this action with

AnalyticsColumn column

The column to use for storing the data

string initialData

The initial data to store in the column

Fields

| Improve this Doc View Source

column

Declaration
protected AnalyticsColumn column
Field Value
Type Description
AnalyticsColumn
| Improve this Doc View Source

currentDataValue

Declaration
protected string currentDataValue
Field Value
Type Description
string

Properties

| Improve this Doc View Source

Value

The current value stored in the column for this action.

Declaration
public string Value { get; }
Property Value
Type Description
string

Methods

| Improve this Doc View Source

Append(string)

Append data to the column for this action. Is not immediately uploaded to server, PlayUR handles this on a regular interval instead.

Declaration
public PlayURPlugin.InProgressAction Append(string data)
Parameters
Type Name Description
string data
Returns
Type Description
PlayURPlugin.InProgressAction

Implements

PlayURPlugin.IProcessAction
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX