Code Monkey home page Code Monkey logo

Comments (7)

xiaoyuvax avatar xiaoyuvax commented on May 27, 2024 1

I have tested Solution 2 by reference MemoryPack source project in mine, after adding an extra interface, just to find i still need all extra formatters for all types. for interfaces defined in MemoryPack r not MemoryPackables themselves, lol
So i take Solution 1.

from memorypack.

neuecc avatar neuecc commented on May 27, 2024

I don't understand what you say...
Before making suggestions, please give specific code for the problem.

from memorypack.

xiaoyuvax avatar xiaoyuvax commented on May 27, 2024

it's not easy to express with codes, i'll try below:

my old code:

public class MyClass
{
object[] items;
}

I want to make it MemoryPackable, so i refactor it to:

[MemoryPackable]
public partial class MyClass
{
object[] items;                               <- i expect IMemoryPackableObject[] Items here, for object array seems can not be serialized 
                                                          by MemoryPack.
}

from memorypack.

neuecc avatar neuecc commented on May 27, 2024

To begin with, objects cannot be serialized.
This is because the type is not known at deserialization time.

from memorypack.

xiaoyuvax avatar xiaoyuvax commented on May 27, 2024

so i need a common type/interface for all MemoryPackable types, such as IMemoryPackableObject

from memorypack.

neuecc avatar neuecc commented on May 27, 2024

I don't know what the solution to that is.
If you want object's Formatter, you can define it?

from memorypack.

xiaoyuvax avatar xiaoyuvax commented on May 27, 2024

Solution1: myself, to define a root level interface for all my types which is marked with [MemoryPackable] to inherit from, and use a formatter to reigster all these inheriting types under that interface.

Solution2: MemoryPack adds a rootlevel interface inherited by the existing IMemoryPackFormatterRegister, as i've suggested. Then i can serve that Interface directly as the type parameter as in List, Dictionary<T1,T2> ... to allow the List or Dictionary accomodating elements of any MemoryPackable types.

from memorypack.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.